airdrops.io APIairdrops.io ↗
Access airdrops.io data via API: latest, hot, and potential airdrops, category filtering, search, token details, participation steps, and live crypto prices.
curl -X GET 'https://api.parse.bot/scraper/9af824b0-75d0-4d52-bcd6-0e68141b30c8/get_latest_airdrops?page=1&sort=newest' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the latest airdrops sorted by publish date or rating. Returns a paginated list of airdrop summaries.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sort order. Accepted values: 'newest', 'rating'. |
{
"type": "object",
"fields": {
"data": "array of airdrop summary objects with id, name, url, logo, temperature, description, requirements, and flags"
},
"sample": {
"data": [
{
"id": "1758742",
"url": "https://airdrops.io/ave-forge/",
"logo": "https://airdrops.io/wp-content/uploads/2026/05/Ave-Forge-logo.jpg",
"name": "Ave Forge",
"status": "",
"is_expired": false,
"description": "Play games and refer",
"is_featured": false,
"temperature": "4",
"is_confirmed": false,
"published_at": "20260507195838",
"requirements": {
"kyc": false,
"twitter": false,
"telegram": false
},
"hot_vote_score": "4"
}
],
"status": "success"
}
}About the airdrops.io API
The airdrops.io API exposes 10 endpoints covering airdrop discovery, detailed project data, and live crypto prices sourced from airdrops.io. With endpoints like get_airdrop_details and get_airdrop_participation_requirements, you can retrieve a full airdrop record including participation steps, eligibility requirements, token ticker, total supply, and blockchain — all in a single call per project.
Airdrop Discovery and Filtering
Four endpoints handle browsing: get_latest_airdrops accepts a sort parameter ('newest' or 'rating') and page for pagination; get_hot_airdrops returns airdrops ranked by vote score; get_potential_airdrops returns speculative retroactive opportunities; and get_airdrops_by_category accepts a category string ('latest', 'hot', 'speculative', 'potential', 'nft', 'telegram') to filter the full catalog. All four return the same summary shape: id, name, url, logo, temperature, description, requirements, and flags. The get_updated_airdrops endpoint additionally surfaces recently modified entries from the homepage feed.
Airdrop Detail Endpoints
For a specific project, pass its URL slug (e.g., 'hyperliquid' or 'megaeth') to get_airdrop_details, which returns the complete record including status, platforms, total_value, and a full description. Two focused endpoints operate on the same slug: get_airdrop_token_info returns key-value token metadata (ticker, total supply, blockchain) when available — the response may be empty if the project has not published token details — and get_airdrop_participation_requirements returns both a requirements array and a participation_steps array as structured string lists, useful for rendering step-by-step guides.
Search and Prices
search_airdrops accepts a query keyword and returns matching airdrop summaries using the same summary object shape as the listing endpoints. get_crypto_prices takes no inputs and returns a live ticker feed with ticker, usdprice, direction, and percentage fields — this represents the price bar displayed on the airdrops.io site rather than a full exchange feed.
- Build an airdrop alert bot that polls
get_latest_airdropssorted by'newest'to notify users of new listings. - Populate a portfolio tracker with token metadata (ticker, blockchain) using
get_airdrop_token_infoper project slug. - Render step-by-step participation guides for airdrop campaigns using
get_airdrop_participation_requirements. - Filter airdrop feeds by category (e.g.,
'nft'or'telegram') viaget_airdrops_by_categoryto build niche discovery tools. - Display a live crypto price ticker widget by calling
get_crypto_pricesfor current USD prices and percentage changes. - Index hot airdrops by vote score using
get_hot_airdropsto surface trending opportunities in a dashboard. - Run keyword searches across the airdrop catalog with
search_airdropsto build a project comparison feature.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does airdrops.io have an official developer API?+
What does `get_airdrop_details` return compared to the listing endpoints?+
get_airdrop_details returns the full project record for a single airdrop identified by its URL slug, including status, platforms, total_value, a full description, and nested participation_steps and requirements. The listing endpoints (get_latest_airdrops, get_hot_airdrops, etc.) return summary objects with id, name, url, logo, temperature, and high-level requirements and flags — they do not include total_value or status.Can `get_airdrop_token_info` always return token data?+
get_potential_airdrops.