⬢ Developers

The airdrop5 API

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.

99.95% uptime·p50 latency 38ms·REST + Webhooks
~/quickstart.sh
# 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"
Base URL
https://api.airdrop5.xyz/v1
Auth
Bearer sk_live_…
Format
JSON · UTF-8 · cursor-paginated

Endpoints

Five resources cover 95% of use cases. Every list is cursor-paginated and filter/sortable.

GET/v1/drops

All drops, filterable and sortable. Cursor-paginated.

ParameterTypeDescription
statusenumlive · upcoming · tge — status filter
sortenumhype · ev · snapshot · legit (default hype)
chainstringchain slug, e.g. monad, base, zksync
limitint1–100, default 25
GET/v1/drops/{id}

A single drop with rating, EV range and snapshot.

ParameterTypeDescription
idstringdrop slug, e.g. monad
GET/v1/drops/{id}/hype

Hype score time series including weighted signals.

ParameterTypeDescription
idstringdrop slug
windowenum24h · 7d · 30d (default 7d)
GET/v1/calendar

Snapshots, TGEs and claim windows as an event list.

ParameterTypeDescription
fromdateISO date, inclusive
typeenumsnapshot · tge · claim · phase
POST/v1/eligibility

Eligibility check for a wallet against a drop. Read-only.

ParameterTypeDescription
walletstringEVM/Solana address (read-only)
dropstringdrop slug
200 OK · GET /v1/drops/monad
{
  "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
⬡ Plans

Rate limits & plans

Fair, transparent, with no hidden throttling. Bursts are smoothed out with a token bucket.

Free
$0
60 req/min
All GET endpoints
60s data delay
Community support
Propopular
$49/mo
600 req/min
Real-time data (no delay)
Webhooks + eligibility
99.95% SLA
Scale
Custom
10k+ req/min
Dedicated infra
Bulk snapshots
Priority support

Limits apply per API key · 429 with a Retry-Afterheader on overage · webhooks don't count toward the limit.

Open Monad Mainnetdrop
dGo to Dashboardview
cCrypto Airdrops · Hype boardview
qQuests · Earn AIR5 pointsview
lLeaderboard · Top huntersview
kCalendar · Snapshots & TGEsview
wMy Watchlistview
gGuidesview
aAPI docscommand