# ADH DeFi Protocol Ranking

> ADH DeFi Protocol Ranking 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 ranked list of DeFi and CEX protocols by TVL, market cap, and recent performance changes, sourced from DeFiLlama across 8000+ protocols.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/defi-protocol-rank
- 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-defi-protocol-ranking-5cda6e0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kau_4FW-sjGGyk8kF9lIU

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-defi-protocol-ranking-5cda6e0c
```

Example prompt: Pull the latest DeFi and CEX protocol rankings by TVL — I want to see the top 200 protocols, their 1-day and 7-day TVL changes, and which chains they're on.

## When to prefer this

Choose this endpoint when you need a ranked, normalized view of the DeFi and CEX protocol landscape by TVL, with multi-chain coverage and short-term momentum signals (1d/7d). Prefer it over raw DeFiLlama API calls when you want pre-processed, agent-ready intelligence with provenance metadata already attached. Ideal for due diligence workflows, macro regime detection, or building DeFi market summaries inside an AI agent context.

## Known failure modes

- Payment failure via x402 if USDC balance is insufficient or wallet not configured
- Stale data if upstream DeFiLlama source has not refreshed recently
- Empty or partial result set if upstream API is temporarily unavailable
- Response may contain duplicate entries as seen in example schema

## How this service works

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

## Output

Returns a JSON object containing up to 200 protocols ranked by TVL, each with name, symbol, chain(s), category (CEX/DeFi/etc), TVL in USD, market cap, 1-day and 7-day percentage changes. Also includes universe_size (total protocols tracked, ~8004), the data source (DeFiLlama), and a 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": {
   "data": [
    {
     "name": "Binance CEX",
     "chain": "Multi-Chain",
     "chains": [
      "Ethereum",
      "Ethereum"
     ],
     "symbol": "BNB",
     "tvl_usd": 140201775532.27,
     "category": "CEX",
     "mcap_usd": null,
     "change_1d_pct": 0.265310572286495,
     "change_7d_pct": 2.514826984009048
    },
    {
     "name": "Binance CEX",
     "chain": "Multi-Chain",
     "chains": [
      "Ethereum",
      "Ethereum"
     ],
     "symbol": "BNB",
     "tvl_usd": 140201775532.27,
     "category": "CEX",
     "mcap_usd": null,
     "change_1d_pct": 0.265310572286495,
     "change_7d_pct": 2.514826984009048
    }
   ],
   "universe_size": 8004,
   "protocols_ranked": 200
  },
  "source": "defillama",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:40:01Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-defi-protocol-ranking-5cda6e0c/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)
