# AgentDatum Crypto Order Book Depth

> AgentDatum Crypto Order Book Depth is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns real-time order book depth (buy/sell walls) for a given crypto symbol across Binance, OKX, and Coinbase

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/crypto/orderbook
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-crypto-order-book-depth-9488b383
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KVlc_-9SWu_B-Ptk91X8v

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 agentdatum-crypto-order-book-depth-9488b383
```

Example prompt: Pull up the live order book depth for BTCUSDT — show me the buy and sell walls aggregated across Binance, OKX, and Coinbase, top 20 levels.

## When to prefer this

Choose this endpoint when you need real-time, multi-exchange order book depth rather than just a single spot price. It is ideal for pre-trade analysis, detecting large buy/sell walls, assessing market liquidity, or monitoring microstructure across Binance, OKX, and Coinbase simultaneously — rather than querying each exchange individually.

## Known failure modes

- Missing or invalid 'symbol' parameter returns a validation error
- Unsupported trading pair symbols may return empty or error responses
- Rate limiting or downstream exchange API outages may cause partial or failed data
- Network timeouts during high market volatility periods

## How this service works

Real-time order book depth showing buy and sell walls across Binance, OKX and Coinbase 💎【付款后立得】实时结构化JSON，即插即用——无需注册，USDC一键支付即取数据。

## Output

Returns a structured order book with arrays of bid (buy) and ask (sell) price levels and quantities for the requested symbol, aggregated from Binance, OKX, and Coinbase in real time. Includes price-quantity pairs at each depth level so agents can identify liquidity walls, support/resistance zones, and spread conditions.

## 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": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer"
      },
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asks": [
   [
    65001,
    0.3
   ]
  ],
  "bids": [
   [
    64999,
    0.5
   ]
  ],
  "spread": 2,
  "symbol": "BTC/USDT",
  "exchange": "binance"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdatum-crypto-order-book-depth-9488b383/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)
