# ADH DEX Pairs Live — agentdatum.com

> ADH DEX Pairs Live — agentdatum.com 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 live DEX trading pair data including price, liquidity, 24h volume, and 24h price change across decentralized exchanges

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/dex-pairs-live
- 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-dex-pairs-live-agentdatum-com-8c701ff6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6JAO8Yiw4q5IaduudLKKO

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-dex-pairs-live-agentdatum-com-8c701ff6
```

Example prompt: Pull the live DEX pair data for WETH right now — I need the current price, liquidity, 24h volume, and 24h change from DexScreener across Solana.

## When to prefer this

Choose this endpoint when you need real-time, on-chain DEX trading pair data including liquidity depth, live price, and 24h volume sourced from DexScreener. It is best suited for DeFi agents, crypto trading assistants, or portfolio monitors that need fresh blockchain-native market data rather than centralized exchange (CEX) quotes. Prefer this over general crypto price APIs when the DEX-specific context (pair address, liquidity pool depth, specific chain) is important to the task.

## Known failure modes

- Token symbol not found across any DEX pairs — returns empty data array
- DexScreener upstream unavailable — may return stale or error response
- Invalid query parameter format — input validation error
- Payment not processed via x402 — 402 Payment Required response blocking data return
- Rate limiting if too many requests in a short window

## How this service works

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

## Output

Returns a JSON object with an array of DEX pair records, each containing the DEX name, token pair, blockchain chain, price in USD, pair contract address, liquidity in USD, 24h price change percentage, and 24h volume in USD. Also includes the total number of pairs found, the queries used, data source attribution (DexScreener), data type label, and an ISO timestamp of when the data was collected.

## 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": [
    {
     "dex": "orca",
     "pair": "WETH/SOL",
     "chain": "solana",
     "query": "WETH",
     "price_usd": "1922.34",
     "pair_address": "HktfL7iwGKT5QHjywQkcDnZXScoh811k7akrMZJkCcEF",
     "liquidity_usd": 3821777.36,
     "change_24h_pct": 0.09,
     "volume_24h_usd": 3652605.12
    },
    {
     "dex": "orca",
     "pair": "WETH/SOL",
     "chain": "solana",
     "query": "WETH",
     "price_usd": "1922.34",
     "pair_address": "HktfL7iwGKT5QHjywQkcDnZXScoh811k7akrMZJkCcEF",
     "liquidity_usd": 3821777.36,
     "change_24h_pct": 0.09,
     "volume_24h_usd": 3652605.12
    }
   ],
   "pairs": 100,
   "queries": [
    "WETH",
    "WETH"
   ]
  },
  "source": "dexscreener",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:40:09Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-dex-pairs-live-agentdatum-com-8c701ff6/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)
