Reference
Documentation
Everything you need to know about using Clawbyte AI
Getting Started
Quick start
Security Scoring
How scores work
API Reference
Integration guide
FAQ
Common questions
Getting Started
What is Clawbyte AI?
Clawbyte AI is an AI-powered security scanner for Solana wallets. It analyzes wallet activity, transaction patterns, and token holdings to generate a deterministic risk score (0–100) along with actionable AI-generated security insights.
How to Scan a Wallet
The same wallet always produces the same score under identical blockchain conditions - ensuring transparency and reproducibility.
Security Scoring
Healthy wallet with consistent activity and clean history.
Some risk indicators present. Review AI insights for details.
Significant security concerns detected. Proceed with caution.
Scoring Factors
Transaction History
Volume, frequency, and on-chain patterns
Token Diversity
Number and type of tokens held
Wallet Age
Account creation and activity duration
Activity Patterns
Regularity and behavioral indicators
Known Interactions
Engagement with verified protocols
AI Insights
After scoring, our AI model generates a natural-language summary of the wallet's security posture. This includes context on findings, risk explanations, and actionable recommendations - all based on on-chain data.
Example AI Output
"This wallet demonstrates consistent on-chain behavior over 247 days with 1,234 transactions. No drainer interactions or phishing approvals detected. Token holdings are diversified across 12 assets. Risk classification: LOW."
API Reference
Endpoint
/api/scanAuthentication
No API key required. Include x-viewer-wallet header to access token holder benefits.
Request
{
"wallet": "[SOLANA_WALLET_ADDRESS]",
"isPublic": false
}Response
{
"ok": true,
"scan": {
"wallet": "YOUR_WALLET_ADDRESS",
"score": 82,
"riskLevel": "LOW",
"findings": [
"Wallet age: 247 days (established)",
"Transaction count: 1,234 (active)",
"Token diversity: 12 unique tokens"
],
"aiSummary": "This wallet shows healthy activity...",
"walletDetails": {
"solBalance": 12.5432,
"tokenCount": 12,
"nftCount": 3,
"txCount": 1234,
"accountAgeDays": 247,
"lastActivity": "2026-02-15T10:30:00.000Z"
},
"createdAt": "2026-02-15T10:30:00.000Z"
}
}Rate Limits
Standard
100 req/min
Per IP address
Token Holders
Unlimited
Requires 5M tokens
Error Codes
Integration Guide
Embedding Clawbyte AI
Integrate Clawbyte AI scans into your dApp, DAO, or platform to verify wallet security before critical operations.
Common Use Cases
Treasury Management
Verify multisig wallets before large transfers
Community Gating
Require score thresholds for DAO membership
OTC Trading
Screen counterparty wallets before trades
Airdrop Eligibility
Filter high-risk wallets from distributions
Example: Score-Gated Action
async function verifyWallet(wallet: string): Promise<boolean> {
const res = await fetch('/api/scan', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ wallet }),
});
const { scan } = await res.json();
return scan.score >= 75 && scan.riskLevel === 'LOW';
}
if (await verifyWallet(recipientAddress)) {
proceed(); // safe to transact
}Frequently Asked Questions
How accurate are the risk scores?
Clawbyte AI uses deterministic heuristics combined with AI analysis. The same wallet always receives the same score under identical blockchain conditions, calibrated against thousands of known wallet patterns.
Do I need to connect my wallet to scan?
No. Clawbyte AI performs read-only analysis using public blockchain data. You never need to sign transactions or connect your wallet to scan any address.
What data do you store?
We store: wallet address, scan timestamp (UTC), risk score, findings, and AI summary. We never store private keys, seed phrases, or any sensitive data.
Can I scan wallets on mainnet?
Yes. Clawbyte AI supports both Solana devnet and mainnet. Toggle your preferred network in settings.
How often should I re-scan?
Wallet security posture changes over time. We recommend re-scanning before major transactions or at least monthly for active wallets.
Is Clawbyte AI open source?
The scoring algorithm and AI models are proprietary to ensure security and prevent gaming.
