Jeder Score, Snapshot und Eligibility-Check über eine saubere REST-API. Dieselben Daten, die das Dashboard antreiben — Open Methodology, versioniert, ohne 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"
Fünf Ressourcen decken 95% der Use-Cases ab. Alle Listen sind cursor-paginiert und filter-/sortierbar.
Alle Drops, filter- und sortierbar. Cursor-paginiert.
| Parameter | Typ | Beschreibung |
|---|---|---|
| status | enum | live · upcoming · tge — Status-Filter |
| sort | enum | hype · ev · snapshot · legit (Default hype) |
| chain | string | Chain-Slug, z.B. monad, base, zksync |
| limit | int | 1–100, Default 25 |
Ein einzelner Drop mit Rating, EV-Range und Snapshot.
| Parameter | Typ | Beschreibung |
|---|---|---|
| id | string | Drop-Slug, z.B. monad |
Hype-Score-Zeitreihe inkl. gewichteter Signale.
| Parameter | Typ | Beschreibung |
|---|---|---|
| id | string | Drop-Slug |
| window | enum | 24h · 7d · 30d (Default 7d) |
Snapshots, TGEs und Claim-Windows als Event-Liste.
| Parameter | Typ | Beschreibung |
|---|---|---|
| from | date | ISO-Datum, inklusive |
| type | enum | snapshot · tge · claim · phase |
Eligibility-Check für eine Wallet gegen einen Drop. Read-only.
| Parameter | Typ | Beschreibung |
|---|---|---|
| wallet | string | EVM/Solana-Adresse (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, ohne versteckte Drosselung. Bursts werden über ein Token-Bucket geglättet.
Limits gelten pro API-Key · 429 mit Retry-After-Header bei Überschreitung · Webhooks zählen nicht aufs Limit.