# ADH Airdrops Intelligence List

> ADH Airdrops Intelligence List is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a tiered, ranked list of cryptocurrency airdrop opportunities with participation recommendations (S/A/B/C/STORABLE ratings) derived from 239 aggregated data sources.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/airdrops-intel-list
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-airdrops-intelligence-list-43d1ac10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8GbbB-1WTSiY_dVmIM2R5

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-airdrops-intelligence-list-43d1ac10
```

Example prompt: Pull the latest ADH airdrop intelligence list and show me all the S-tier and A-tier projects I should be participating in right now.

## When to prefer this

Choose this endpoint when you need a pre-ranked, intelligence-processed list of crypto airdrop opportunities rather than raw blockchain data. It is ideal for agents that need to quickly surface actionable participation recommendations without manually aggregating and scoring dozens of airdrop sources. Prefer it over raw on-chain data scrapers when you need tiered quality ratings, participation probability scores, and sourcing provenance already baked in.

## Known failure modes

- 402 Payment Required — x402 payment not provided or USDC balance insufficient
- Stale data — updated_at timestamp may lag if upstream sources are delayed
- Empty top array — if no high-tier airdrops qualify at query time
- Network timeout — upstream aggregation from 239 sources may occasionally slow response

## How this service works

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

## Output

A JSON object containing: a top-ranked preview array of airdrop projects (each with name, participation probability score, tier rating S/A/B/C/STORABLE, and investor score), a URL to the full ranked list, a breakdown of counts per tier (S=19, A=55, B=109, C=185, STORABLE=336 in the example), total airdrop count, a legend explaining tier meanings, and an ISO8601 timestamp of when the data was last updated.

## 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": {
   "top": [
    {
     "n": "Nous Research",
     "p": 0.9482,
     "t": "S",
     "inv": 99.9
    },
    {
     "n": "Nous Research",
     "p": 0.9482,
     "t": "S",
     "inv": 99.9
    }
   ],
   "full": "/api/v1/airdrops/intel/list",
   "tiers": {
    "A": 55,
    "B": 109,
    "C": 185,
    "S": 19,
    "STORABLE": 336
   },
   "total": 704,
   "legend": "S必参与/A强推/B可参与/C观望/STORABLE可埋伏"
  },
  "updated_at": "2026-08-09T18:17:08Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-airdrops-intelligence-list-43d1ac10/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)
