# ADH DeFi Chain TVL Intelligence

> ADH DeFi Chain TVL Intelligence 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 ranked total value locked (TVL) data across all major blockchain chains, sourced and normalized from DeFiLlama, with entity resolution and timestamped provenance.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/defi-chain-tvl
- 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-chain-tvl-intelligence-e2a00592
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eHJik6T27Rc9Itvu9xdXs

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-chain-tvl-intelligence-e2a00592
```

Example prompt: Pull the latest DeFi chain TVL rankings — I want to see which blockchains have the most total value locked right now, with Ethereum and at least 120 chains ranked by USD.

## When to prefer this

Choose this endpoint when you need a clean, ranked, multi-chain TVL snapshot normalized from DeFiLlama with entity resolution (chain IDs, CoinGecko IDs) and provenance metadata — especially when building crypto intelligence pipelines, DeFi due diligence workflows, or macro regime dashboards that require timestamped, agent-ready data at $0.01 per call via x402 micropayment.

## Known failure modes

- Payment not provided or insufficient USDC — returns HTTP 402 requiring x402 payment
- Upstream DeFiLlama data unavailable — may return stale or empty data array
- Malformed query parameters — returns validation error
- Rate limiting if called excessively without valid payment flow

## How this service works

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

## Output

A JSON object containing an array of chain-level TVL records (chain name, token, TVL in USD, chain ID, CoinGecko ID), the total count of ranked chains, aggregate total TVL in USD across all chains, universe size, the underlying source (DeFiLlama), data type label, and a UTC 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": [
    {
     "chain": "Ethereum",
     "token": "ETH",
     "tvl_usd": 41959522782.33,
     "chain_id": 1,
     "gecko_id": "ethereum"
    },
    {
     "chain": "Ethereum",
     "token": "ETH",
     "tvl_usd": 41959522782.33,
     "chain_id": 1,
     "gecko_id": "ethereum"
    }
   ],
   "chains_ranked": 120,
   "total_tvl_usd": 76110822244.85,
   "universe_size": 461
  },
  "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-chain-tvl-intelligence-e2a00592/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)
