# Uniswap V3 Top Liquidity Pools by TVL

> Uniswap V3 Top Liquidity Pools by TVL is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the top Uniswap V3 liquidity pools on Ethereum ranked by total value locked, including token pair, fee tier, TVL, and all-time volume.

## Facts

- Endpoint: GET https://api.x402node.dev/pool/top
- Price: $0.02/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-top-liquidity-pools-by-tvl-58c93286
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bDAdL6DM1HXvf6EyqTW9N

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-top-liquidity-pools-by-tvl-58c93286
```

Example prompt: Show me the top Uniswap V3 liquidity pools on Ethereum right now — I want to see which token pairs have the most TVL, their fee tiers, and all-time volume so I can figure out the best routing for a large swap.

## When to prefer this

Use this endpoint when you need a quick ranked overview of Uniswap V3 pool liquidity on Ethereum without building your own subgraph query. Ideal for swap routing decisions, market overviews, or identifying deep liquidity pools. Prefer over raw subgraph queries when you want a pre-aggregated, ranked result without managing API keys or GraphQL.

## Known failure modes

- Subgraph API key exhausted or rate-limited — returns 402 or 429 error
- Subgraph data may be slightly delayed relative to on-chain state
- No query parameters accepted; cannot filter by specific token or fee tier
- Payment failure via x402 protocol results in 402 response blocking data access

## How this service works

Top Uniswap V3 liquidity pools on Ethereum ranked by total value locked in USD, each with token pair, fee tier, TVL and all-time volume, from a subgraph behind an API key. For market overview and routing. top pools, largest pools, uniswap tvl ranking, deepest liquidity, dex pools Accepts payment on Base or Solana — either network works.

## Output

A ranked list of top Uniswap V3 pools on Ethereum, each with the token pair (e.g. WETH/USDC), fee tier (e.g. 0.05%), total value locked in USD, and all-time trading volume — suitable for market overview, liquidity analysis, and swap routing decisions.

## 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",
     "properties": {
      "limit": {
       "type": "string",
       "description": "top N (default 10, max 30)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uniswap-v3-top-liquidity-pools-by-tvl-58c93286/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
