Discover/Airdrops API
live

Airdrops APIairdrops.io

Access airdrops.io data via API: browse latest, hot, and potential airdrops by category, get full project details, participation steps, token info, and live crypto prices.

Endpoint health
verified 3d ago
get_potential_airdrops
get_hot_airdrops
get_airdrops_by_category
get_airdrop_details
search_airdrops
10/10 passing latest checkself-healing
Endpoints
10
Updated
26d ago

What is the Airdrops API?

The airdrops.io API exposes 10 endpoints covering the full breadth of airdrop data published on airdrops.io, from paginated listing feeds to per-project detail pages. get_airdrop_details returns project name, status (confirmed or unconfirmed), blockchain platforms, token info, participation requirements, community temperature score, and estimated total value for any airdrop identified by its URL slug. Additional endpoints cover category filtering, keyword search, recently updated projects, and live prices for BTC, ETH, SOL, and other major assets.

Try it
Page number for pagination.
Sort order for results.
api.parse.bot/scraper/9af824b0-75d0-4d52-bcd6-0e68141b30c8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace airdrops-io-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Airdrops.io SDK — discover, filter, and drill into crypto airdrops."""
from parse_apis.airdrops_io_api import Airdrops, Sort, Category, AirdropNotFound

client = Airdrops()

# Browse hot airdrops ranked by community votes
for drop in client.airdropsummaries.hot(limit=5):
    print(drop.name, drop.temperature, drop.requirements.telegram)

# Search for airdrops by keyword
result = client.airdropsummaries.search(query="bitcoin", limit=3).first()
if result:
    print(result.name, result.slug, result.is_expired)

# Filter by category using the Category enum
for drop in client.airdropsummaries.by_category(category=Category.NFT, limit=3):
    print(drop.name, drop.hot_vote_score)

# Drill into a specific airdrop for full details
airdrop = client.airdrops.get(slug="hyperliquid")
print(airdrop.name, airdrop.status, airdrop.temperature)

# Fetch participation requirements from the detail resource
info = airdrop.participation()
for step in info.participation_steps:
    print(step)

# Typed error handling for missing airdrops
try:
    client.airdrops.get(slug="nonexistent-project-xyz")
except AirdropNotFound as exc:
    print(f"Not found: {exc.slug}")

# Check live crypto prices
for price in client.cryptoprices.list(limit=5):
    print(price.ticker, price.usdprice, price.direction, price.percentage)

print("exercised: hot / search / by_category / get / participation / list prices")
All endpoints · 10 totalmissing one? ·

Retrieve the latest airdrops sorted by publish date or rating. Returns a paginated list of airdrop summaries. Each page contains up to 18 items.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
Response
{
  "type": "object",
  "fields": {
    "items": "array of AirdropSummary objects"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "1828966",
          "url": "https://airdrops.io/questflow/",
          "logo": "https://airdrops.io/wp-content/uploads/2026/06/Questflow-logo.jpg",
          "name": "Questflow",
          "slug": "questflow",
          "status": "",
          "is_expired": false,
          "description": "Create AI clone and refer users",
          "is_featured": false,
          "temperature": "28",
          "is_confirmed": false,
          "published_at": "20260610203119",
          "requirements": {
            "kyc": false,
            "twitter": false,
            "telegram": false
          },
          "hot_vote_score": "28"
        }
      ]
    },
    "status": "success"
  }
}

About the Airdrops API

Listing and Category Endpoints

Four endpoints handle paginated airdrop lists, each returning up to 18 AirdropSummary objects per page. get_latest_airdrops accepts an optional sort parameter to order results by publish date or rating. get_hot_airdrops ranks results by hot_vote_score descending. get_potential_airdrops surfaces speculative retroactive opportunities. get_airdrops_by_category accepts a required category string — valid values include latest, hot, speculative, potential, nft, and telegram — and returns the matching subset. All four accept a page integer for pagination.

Detail and Token Endpoints

get_airdrop_details takes a slug matching the path segment of any airdrop URL on airdrops.io and returns a full record: logo URL, name, status, platforms array, token_info object (ticker, supply, chain), description, temperature, total_value, and a requirements array. For workflows that only need the token layer, get_airdrop_token_info returns just the key-value token details for the given slug — note that many early-stage projects return an empty object when that data has not yet been published. get_airdrop_participation_requirements returns both requirements and participation_steps arrays for the same slug, useful for building eligibility checkers without fetching the full detail record.

Search, Updates, and Prices

search_airdrops accepts a query string and returns matching summaries across both active and expired airdrops. get_updated_airdrops returns the homepage's "Updated Airdrops" section as a list of recently modified summaries — no parameters required. get_crypto_prices returns price objects for a fixed set of major cryptocurrencies (BTC, ETH, SOL, HYPE, XMR), each with usdprice, direction, and percentage change fields, reflecting the ticker data displayed on the site.

Reliability & maintenanceVerified

The Airdrops API is a managed, monitored endpoint for airdrops.io — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when airdrops.io changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official airdrops.io API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
10/10 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a personal airdrop dashboard that surfaces confirmed airdrops filtered by blockchain platform from get_airdrop_details.
  • Automate alerts when new entries appear in get_hot_airdrops with a vote score above a defined threshold.
  • Aggregate participation steps from get_airdrop_participation_requirements into a task checklist for multiple active airdrops.
  • Track speculative retroactive opportunities by polling get_potential_airdrops daily and diffing results.
  • Enrich a DeFi research tool with live BTC, ETH, and SOL price direction signals from get_crypto_prices.
  • Index airdrop content for full-text search by combining search_airdrops results with detailed token info from get_airdrop_token_info.
  • Monitor the NFT airdrop category specifically by passing nft to the category param of get_airdrops_by_category.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does airdrops.io offer an official developer API?+
Airdrops.io does not publish an official public developer API or documented data feed. This Parse API provides structured access to the data available on the site.
What does `get_airdrop_details` return, and how do I identify a specific airdrop?+
The endpoint takes a slug parameter — the path segment from the airdrop's URL on airdrops.io (for example, uniswap from airdrops.io/airdrop/uniswap). It returns the project logo, name, confirmation status, blockchain platforms, token details (ticker, supply, chain), description, community temperature score, estimated total value, and an array of participation requirements.
Are expired or historical airdrops accessible through search?+
search_airdrops returns matches across both active and expired airdrops indexed on airdrops.io, so historical projects that match the query keyword will appear in results alongside current ones.
Does the API expose wallet eligibility checks or on-chain claim status?+
Not currently. The API covers airdrop listings, participation requirements, token metadata, and community scores as published on airdrops.io — it does not include on-chain eligibility verification or claim status. You can fork this API on Parse and revise it to add an endpoint that calls a relevant blockchain data source for wallet-level eligibility checks.
How many cryptocurrencies does `get_crypto_prices` cover?+
The endpoint returns price data for the fixed set of tickers displayed in the site's price ticker: BTC, ETH, SOL, HYPE, and XMR. Each object includes USD price, direction indicator, and percentage change. Coverage beyond this set is not currently included. You can fork the API on Parse and revise it to pull additional tickers from a broader price data source.
Page content last updated . Spec covers 10 endpoints from airdrops.io.
Related APIs in Crypto Web3See all →
icodrops.com API
Access structured data on active, upcoming, and ended Initial Coin Offerings listed on icodrops.com. Retrieve project metadata including ticker, round type, raised amounts, investors, and ecosystems. Look up individual projects by slug or search across all listings by keyword.
cryptoslate.com API
Track real-time cryptocurrency prices and rankings, access detailed coin information and market overviews, and discover industry companies and key people in the crypto space. Stay informed with the latest cryptocurrency news articles and search across all available data to monitor assets and trends.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.
a16zcrypto.com API
Access a16z Crypto's latest blog posts, portfolio companies, and team member information with powerful search and filtering capabilities. Get comprehensive details about their investments, team profiles, and company insights all in one place.
theblock.co API
Access real-time cryptocurrency prices, breaking news, and in-depth research articles from The Block's crypto intelligence platform. Search and browse news by category, discover articles from expert authors, and learn about blockchain topics all in one place.
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.