# Uniswap V3 Pool Search by Token

> Uniswap V3 Pool Search by Token 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 Uniswap V3 liquidity pools on Ethereum containing a given token, ranked by TVL, with pair, fee tier, and TVL details.

## Facts

- Endpoint: GET https://api.x402node.dev/pool/search
- 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-pool-search-by-token-06536b91
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TWarKhKrBovq6Ejf-y8XR

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-pool-search-by-token-06536b91
```

Example prompt: Find all Uniswap V3 pools on Ethereum that contain USDC at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, ranked by total value locked, so I can see the best liquidity options and fee tiers available.

## When to prefer this

Use this endpoint when you need to discover Uniswap V3 liquidity pools for a specific ERC20 token on Ethereum — particularly for DEX routing decisions, liquidity analysis, or finding the best fee tier for a swap. Prefer this over generic DeFi data providers when you need TVL-ranked pool data directly from the Uniswap V3 subgraph without building your own subgraph query.

## Known failure modes

- Invalid or non-Ethereum token contract address returns empty results or error
- Token with no Uniswap V3 pools returns empty list
- Subgraph data lag means very recently created pools may not appear
- Rate limiting or payment failure returns 402 or 429 error
- Malformed address (wrong checksum, wrong length) returns validation error

## How this service works

Uniswap V3 pools on Ethereum that contain a given token, by token contract address, ranked by total value locked, each with pair, fee tier and TVL, from a subgraph behind an API key. For finding where a token has liquidity. find pools, token liquidity pools, pools for token, where to trade, dex routing Accepts payment on Base or Solana — either network works.

## Output

A ranked list of Uniswap V3 pools containing the queried token, each with the trading pair (e.g. USDC/WETH), fee tier (e.g. 0.05%, 0.3%, 1%), total value locked in USD, and pool contract address — ordered from highest to lowest TVL.

## 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": [
      "token"
     ],
     "properties": {
      "limit": {
       "type": "string",
       "description": "per side (default 8, max 20)"
      },
      "token": {
       "type": "string",
       "description": "token contract 0x..."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uniswap-v3-pool-search-by-token-06536b91/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)
