# ADH DeFi DEX Volume Intelligence

> ADH DeFi DEX Volume 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 DEX trading volume data across chains (24h and 7d) with entity resolution, percent changes, and sourcing metadata from DeFiLlama.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/defi-dex-volume
- 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-dex-volume-intelligence-fada3cd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p4wPU-g-z1A5z6iyfjElF

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-dex-volume-intelligence-fada3cd1
```

Example prompt: Pull the latest DEX volume rankings for all chains — I want to see which decentralized exchanges had the highest 24h and 7d trading volume and how much they changed day-over-day.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-cleaned, ranked snapshot of DeFi DEX volume across all major chains without building your own DeFiLlama integration. It is especially useful for AI agents that need structured, entity-resolved trading volume intelligence with sourcing metadata in a single $0.01 call, rather than querying raw DeFiLlama APIs directly.

## Known failure modes

- Upstream DeFiLlama API unavailable — may return stale or empty data
- Payment not settled via x402 — request blocked before data is returned
- Data freshness lag — collected_at timestamp may be minutes behind real-time
- Partial chain coverage — not all chains or DEXes may be represented in every response

## How this service works

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

## Output

Returns a JSON object containing an array of ranked DEXes, each with name, supported chains, category, 24h USD volume, 7d USD volume, 1d percent change, and 7d percent change. Also includes aggregate stats: total 24h USD volume across all DEXes, the number of ranked DEXes, and the full universe size. Metadata includes the data source (DeFiLlama), data type label, and ISO 8601 collection timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "data": [
    {
     "name": "PumpSwap",
     "chains": [
      "Solana"
     ],
     "category": "Dexs",
     "change_1d_pct": 73.45,
     "change_7d_pct": 7.13,
     "volume_7d_usd": 4261613416,
     "volume_24h_usd": 688113244
    },
    {
     "name": "PumpSwap",
     "chains": [
      "Solana"
     ],
     "category": "Dexs",
     "change_1d_pct": 73.45,
     "change_7d_pct": 7.13,
     "volume_7d_usd": 4261613416,
     "volume_24h_usd": 688113244
    }
   ],
   "dexs_ranked": 120,
   "total_24h_usd": 4392931933.45,
   "universe_size": 1298
  },
  "source": "defillama",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:40:02Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-defi-dex-volume-intelligence-fada3cd1/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)
