Every score, snapshot and eligibility check over a clean REST API. The same data that powers the dashboard — open methodology, versioned, with no promo bias.
# 1. Set your key export A5_KEY="sk_live_a5_••••••••••••" # 2. Fetch the top live drops by hype curl https://api.airdrop5.xyz/v1/drops \ -H "Authorization: Bearer $A5_KEY" \ -d "sort=hype&status=live&limit=5"
Five resources cover 95% of use cases. Every list is cursor-paginated and filter/sortable.
All drops, filterable and sortable. Cursor-paginated.
| Parameter | Type | Description |
|---|---|---|
| status | enum | live · upcoming · tge — status filter |
| sort | enum | hype · ev · snapshot · legit (default hype) |
| chain | string | chain slug, e.g. monad, base, zksync |
| limit | int | 1–100, default 25 |
A single drop with rating, EV range and snapshot.
| Parameter | Type | Description |
|---|---|---|
| id | string | drop slug, e.g. monad |
Hype score time series including weighted signals.
| Parameter | Type | Description |
|---|---|---|
| id | string | drop slug |
| window | enum | 24h · 7d · 30d (default 7d) |
Snapshots, TGEs and claim windows as an event list.
| Parameter | Type | Description |
|---|---|---|
| from | date | ISO date, inclusive |
| type | enum | snapshot · tge · claim · phase |
Eligibility check for a wallet against a drop. Read-only.
| Parameter | Type | Description |
|---|---|---|
| wallet | string | EVM/Solana address (read-only) |
| drop | string | drop slug |
{
"id": "monad",
"name": "Monad Mainnet",
"chain": "monad",
"status": "live",
"hype_score": 96,
"hype_delta_7d": 12,
"rating": { "reward": 5, "legit": 5, "difficulty": 3 },
"ev_usd": { "p50": 2850, "p10": 1200, "p90": 5400 },
"snapshot": { "block": 8412066, "date": "2026-06-14T14:00:00Z" },
"cost_usd": 48,
"updated_at": "2026-05-28T11:59:42Z"
}
# List the 5 hottest live drops curl https://api.airdrop5.xyz/v1/drops \ -H "Authorization: Bearer $A5_KEY" \ --data-urlencode "status=live" \ --data-urlencode "sort=hype" \ --data-urlencode "limit=5" -G
Fair, transparent, with no hidden throttling. Bursts are smoothed out with a token bucket.
Limits apply per API key · 429 with a Retry-Afterheader on overage · webhooks don't count toward the limit.