# Uniswap V3 Order Book Depth API

> Uniswap V3 Order Book Depth API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Retrieves order book depth and liquidity analysis for a specified Uniswap V3 pool on Base or Ethereum.

## Facts

- Endpoint: GET https://klymax402.com/api/orderbook-depth/api/depth
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uniswap-v3-order-book-depth-api-0a05ab72
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4k2JHALZlyQZrdYW0LMNZ

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 uniswap-v3-order-book-depth-api-0a05ab72
```

Example prompt: What's the current order book depth and liquidity for the Uniswap V3 pool at 0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640 on Ethereum — show me the token pair, fee tier, and current price?

## When to prefer this

Use this endpoint when you need on-chain Uniswap V3 liquidity and order book depth data for a specific pool on Base or Ethereum without managing your own RPC node or API keys. It is ideal for pre-trade analysis, slippage estimation, and liquidity monitoring. Prefer this over raw RPC calls when you want structured, analyzed output including token metadata and fee tier, and when paying per-call via USDC on Base is acceptable.

## Known failure modes

- Invalid or non-existent pool address returns an error or empty depth object
- Unsupported chain name causes a bad request response
- Pool with very low liquidity may return minimal or zero depth data
- Network congestion on Base or Ethereum may cause delayed or stale data
- Malformed pool address format (missing 0x prefix) may result in validation error

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the pool address, chain, depth data object, token0 and token1 details, fee tier (integer), total liquidity, current price, and an analyzedAt timestamp indicating when the analysis was performed.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pool"
     ],
     "properties": {
      "pool": {
       "type": "string",
       "description": "Uniswap V3 pool address (0x...)"
      },
      "chain": {
       "type": "string",
       "description": "Chain name: base, ethereum (default: base)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pool": "example",
  "chain": "example",
  "depth": {},
  "token0": {},
  "token1": {},
  "feeTier": 1,
  "liquidity": "example",
  "analyzedAt": "example",
  "currentPrice": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uniswap-v3-order-book-depth-api-0a05ab72/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
