# ADH Airdrop Radar — Crypto Airdrop Intelligence Feed

> ADH Airdrop Radar — Crypto Airdrop Intelligence Feed is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a live-aggregated list of crypto airdrop campaigns across major exchanges (Binance, OKX, Bybit), including status, dates, and source attribution.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/airdrop-radar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-airdrop-radar-crypto-airdrop-intelligence-feed-65f9596b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q5kB5pOih5AEs2zkVdfWO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability adh-airdrop-radar-crypto-airdrop-intelligence-feed-65f9596b
```

Example prompt: Can you pull the latest airdrop radar data and show me which campaigns are currently active across Binance, OKX, and Bybit — including how many have ended and what the sources are?

## When to prefer this

Choose this endpoint when you need a multi-exchange, pre-aggregated airdrop intelligence feed without managing raw scrapers or exchange API integrations. Ideal for crypto due-diligence workflows, airdrop monitoring bots, or agent pipelines that need structured, sourced, and timestamped airdrop data at $0.01 per call via x402 micropayment settlement. Prefer over building custom scrapers when speed, cross-exchange coverage (Binance, OKX, Bybit), and entity-resolved output are priorities.

## Known failure modes

- Payment not settled via x402 — returns 402 Payment Required
- Upstream exchange CMS unavailable — may return stale or partial data
- No active airdrops at query time — active count is 0 but response is still valid
- Rate limiting or quota exceeded — returns 429 or similar error
- Malformed request — missing required 'input' object returns 400

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object with a list of airdrop campaign items (each with URL, date, type, title, status, and exchange), aggregate counts (total, active, ended, unknown), a by-exchange breakdown, data sources list, data type label, and collection timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "ended": 9,
   "items": [
    {
     "url": "https://www.binance.com/en/support/announcement/79f451fec45544f8ad941647165f22a8",
     "date": "2026-08-07",
     "type": "activity",
     "title": "Extension to the USD1 Airdrop Campaign (2026-08-07)",
     "status": "active",
     "exchange": "Binance"
    },
    {
     "url": "https://www.binance.com/en/support/announcement/79f451fec45544f8ad941647165f22a8",
     "date": "2026-08-07",
     "type": "activity",
     "title": "Extension to the USD1 Airdrop Campaign (2026-08-07)",
     "status": "active",
     "exchange": "Binance"
    }
   ],
   "total": 54,
   "active": 2,
   "sources": [
    "Binance CMS",
    "Binance CMS"
   ],
   "unknown": 43,
   "by_exchange": {
    "OKX": 1,
    "Bybit": 1,
    "Binance": 52
   }
  },
  "source": "airdrop_radar",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:17:55Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-airdrop-radar-crypto-airdrop-intelligence-feed-65f9596b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
