Documentation
Everything you need to integrate VerifyDrop's wallet verification and Sybil detection into your Solana project.
Getting Started
Quick start guide to integrate VerifyDrop into your project
API Reference
Complete API documentation with endpoints and examples
1Introduction
VerifyDrop provides a comprehensive API for wallet verification, Sybil detection, and airdrop security on Solana. Our API helps projects distribute tokens fairly by identifying and filtering out bot wallets, Sybil clusters, and suspicious addresses.
Key Features
- Real-time wallet safety scoring (0-100)
- Sybil cluster detection using on-chain graph analysis
- Bot pattern recognition with ML models
- Batch processing for snapshot analysis
- Webhook notifications for real-time alerts
2Authentication
All API requests require authentication using an API key. Include your API key in the request headers:
Authorization: Bearer your_api_key_here
Content-Type: application/jsonTo get an API key, sign up for a VerifyDrop account and navigate to your dashboard settings.
3Wallet Verification API
Check the safety score and risk factors for any Solana wallet address.
GET /api/v1/verify/{wallet_address}{
"wallet": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
"safety_score": 85,
"risk_level": "low",
"flags": [],
"sybil_probability": 0.12,
"wallet_age_days": 342,
"transaction_count": 1247,
"unique_interactions": 89,
"verified_at": "2026-03-08T12:00:00Z"
}4Sybil Detection API
Analyze a batch of wallets for Sybil clusters and suspicious patterns. Our algorithm detects wallets that are likely controlled by the same entity.
POST /api/v1/sybil/analyze
{
"wallets": [
"wallet_address_1",
"wallet_address_2",
"wallet_address_3"
],
"threshold": 0.7
}Rate Limits
| Plan | Requests/minute | Batch size | Webhooks |
|---|---|---|---|
| Free | 10 | 100 wallets | No |
| Pro | 100 | 10,000 wallets | Yes |
| Enterprise | Unlimited | Unlimited | Yes + Priority |
Ready to Get Started?
Sign up for free and start protecting your airdrop from Sybils and bots today.