Cambrian V3 - List Pools API

By Cambrian Network base

GET /api/v1/evm/clones/v3/pools

EVM Clones V3 Pools

Returns a comprehensive list of all liquidity pools across Uniswap V3 clones, including token pairs, fee tiers, creation timestamps, and DEX information. This endpoint provides essential pool discovery and metadata for tracking liquidity across multiple EVM-compatible decentralized exchanges.

Business Value

  • Pool Discovery: Find liquidity pools across multiple Uniswap V3 clone DEXs in a single query, enabling comprehensive market analysis
  • Token Pair Analysis: Identify available trading pairs and their associated fee structures for optimal trading route planning
  • Liquidity Monitoring: Track pool creation patterns and growth across different decentralized exchanges
  • Cross-DEX Comparison: Compare fee tiers and pool availability across different Uniswap V3 clone implementations
  • Integration Support: Provide essential pool metadata for DEX aggregators, portfolio trackers, and analytics platforms

Endpoint Details

URL:

https://opabinia.cambrian.network/api/v1/evm/clones/v3/pools

Method: GET
Authentication: Required via X-API-Key header

Query Parameters

Parameter Type Required Default Description
token_address string No - Pool token address (must match pattern: ^0x[a-fA-F0-9]{40}$)
limit integer No 100 Limit the number of results (min: 1, max: 1000)
offset integer No 0 Skip a number of rows before returning results (min: 0, max: 100000)
order_asc array No - Column names to order by in ascending order (comma-separated)
order_desc array No - Column names to order by in descending order (comma-separated)

Response Field Descriptions

Response Field Type Description
chainId UInt32 Blockchain network ID (e.g., 8453 for Base)
dexAddress String DEX contract address
dexName String Name of the DEX (e.g., 9mm, BaseSwap, DackieSwap)
poolAddress String Unique liquidity pool contract address
token0Address String Contract address of the first token in the pair
token0Symbol String Symbol of the first token (e.g., WETH, USDC)
token0Decimals UInt8 Number of decimal places for the first token
token1Address String Contract address of the second token in the pair
token1Symbol String Symbol of the second token
token1Decimals UInt8 Number of decimal places for the second token
createdAt DateTime Timestamp when the pool was created (UTC)
fee UInt32 Pool fee in basis points (e.g., 2500 = 0.25%)
tickSpacing Int32 Tick spacing for the pool's price range

Examples

1. Get All Pools

Retrieve a list of all available liquidity pools across Uniswap V3 clones.

curl -X GET "https://opabinia.cambrian.network/api/v1/evm/clones/v3/pools" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

[{
  "columns": [
    {"name": "chainId", "type": "UInt32"},
    {"name": "dexAddress", "type": "LowCardinality(FixedString(42))"},
    {"name": "dexName", "type": "String"},
    {"name": "poolAddress", "type": "FixedString(42)"},
    {"name": "token0Address", "type": "LowCardinality(FixedString(42))"},
    {"name": "token0Symbol", "type": "String"},
    {"name": "token0Decimals", "type": "UInt8"},
    {"name": "token1Address", "type": "LowCardinality(FixedString(42))"},
    {"name": "token1Symbol", "type": "String"},
    {"name": "token1Decimals", "type": "UInt8"},
    {"name": "createdAt", "type": "DateTime('UTC')"},
    {"name": "fee", "type": "UInt32"},
    {"name": "tickSpacing", "type": "Int32"}
  ],
  "data": [
    [8453, "0x7b72c4002ea7c276dd717b96b20f4956c5c904e7", "9mm", "0xec72c68a746dc7552bec13bf56245ea8c39d7b63", "0x4200000000000000000000000000000000000006", "WETH", 18, "0xb2b6249e1b8eaa81c18cc9ac8f320e4c85617b07", "CLAWDSTRATEGY", 18, "2026-01-28T10:33:45+00:00", 2500, 50],
    [8453, "0x38015d05f4fec8afe15d7cc0386a126574e8077b", "BaseSwap", "0xeaba2c3e02bd4c935d4aa8784ad83b419d2be08f", "0x4ed4e862860bed51a9570b96d89af5e1b0efefed", "DEGEN", 18, "0xd17b3f2efd965dbafec0af3bc0838b704009a69e", "SH", 18, "2026-01-23T21:01:33+00:00", 50, 1],
    [8453, "0x3d237ac6d2f425d2e890cc99198818cc1fa48870", "DackieSwap", "0x3456ae2a89b04d25f1742494bd312c87ab601c14", "0x4200000000000000000000000000000000000006", "WETH", 18, "0x5685bab29c459a06c46cfa4360158abb1aaf441d", "USOR", 18, "2026-01-21T11:47:17+00:00", 500, 10],
    [8453, "0x7b72c4002ea7c276dd717b96b20f4956c5c904e7", "9mm", "0xcf92b0b4caa015c6d7a4de281ad89e3f7bccab08", "0x39916e508e389fbb4ddc3d1a38a5801f4ee253c7", "🧙‍♀️🸸", 18, "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf", "cbBTC", 8, "2026-01-19T23:57:35+00:00", 2500, 50],
    [8453, "0x7b72c4002ea7c276dd717b96b20f4956c5c904e7", "9mm", "0x0adc33f2a51390f844fc396cc0c51f8e40c6207e", "0x16b13a47b0c535efae58675e0657d3c22471cda8", "wBYC", 18, "0x39916e508e389fbb4ddc3d1a38a5801f4ee253c7", "🧙‍♀️🸸", 18, "2026-01-19T23:49:49+00:00", 500, 10]
  ],
  "rows": 100
}]

This response shows the first 5 pools from a total of 100 pools available, including various token pairs like WETH/CLAWDSTRATEGY, DEGEN/SH, and others across different DEXs on the Base network (chainId: 8453).

2. Filter by Specific Token

Get pools containing a specific token address.

curl -X GET "https://opabinia.cambrian.network/api/v1/evm/clones/v3/pools?token_address=0x4200000000000000000000000000000000000006&limit=5" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

[{
  "columns": [
    {"name": "chainId", "type": "UInt32"},
    {"name": "dexAddress", "type": "LowCardinality(FixedString(42))"},
    {"name": "dexName", "type": "String"},
    {"name": "poolAddress", "type": "FixedString(42)"},
    {"name": "token0Address", "type": "LowCardinality(FixedString(42))"},
    {"name": "token0Symbol", "type": "String"},
    {"name": "token0Decimals", "type": "UInt8"},
    {"name": "token1Address", "type": "LowCardinality(FixedString(42))"},
    {"name": "token1Symbol", "type": "String"},
    {"name": "token1Decimals", "type": "UInt8"},
    {"name": "createdAt", "type": "DateTime('UTC')"},
    {"name": "fee", "type": "UInt32"},
    {"name": "tickSpacing", "type": "Int32"}
  ],
  "data": [
    [8453, "0x7b72c4002ea7c276dd717b96b20f4956c5c904e7", "9mm", "0xec72c68a746dc7552bec13bf56245ea8c39d7b63", "0x4200000000000000000000000000000000000006", "WETH", 18, "0xb2b6249e1b8eaa81c18cc9ac8f320e4c85617b07", "CLAWDSTRATEGY", 18, "2026-01-28T10:33:45+00:00", 2500, 50],
    [8453, "0x3d237ac6d2f425d2e890cc99198818cc1fa48870", "DackieSwap", "0x3456ae2a89b04d25f1742494bd312c87ab601c14", "0x4200000000000000000000000000000000000006", "WETH", 18, "0x5685bab29c459a06c46cfa4360158abb1aaf441d", "USOR", 18, "2026-01-21T11:47:17+00:00", 500, 10]
  ],
  "rows": 100
  // ... additional rows omitted for brevity
}]

This filtered response shows pools specifically containing WETH token (0x4200000000000000000000000000000000000006) as either token0 or token1, useful for finding trading pairs with a specific base token.

x402 Payment Option

This endpoint supports pay-per-use access via the x402 payment protocol (v2) — pay $0.05 USDC per request using blockchain micropayments. No API key required.

Quick Start (TypeScript)

npm install @x402/fetch @x402/evm viem
import { x402Client } from "@x402/core/client";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";

const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY as `0x${string}`);
const client = new x402Client();
client.register("eip155:*", new ExactEvmScheme(signer));

const fetchWithPayment = wrapFetchWithPayment(fetch, client);
const response = await fetchWithPayment(
  "https://deep42.cambrian.network/api/v1/evm/clones/v3/pools"
);
const data = await response.json();

Quick Start (Python)

pip install "x402[httpx]"
import asyncio, os
from eth_account import Account
from x402 import x402Client
from x402.http.clients import x402HttpxClient
from x402.mechanisms.evm import EthAccountSigner
from x402.mechanisms.evm.exact.register import register_exact_evm_client

async def main():
    client = x402Client()
    account = Account.from_key(os.getenv("EVM_PRIVATE_KEY"))
    register_exact_evm_client(client, EthAccountSigner(account))

    async with x402HttpxClient(client) as http:
        response = await http.get("https://deep42.cambrian.network/api/v1/evm/clones/v3/pools")
        print(response.json())

asyncio.run(main())

Payment Flow

  1. Send a normal request to the endpoint (no API key needed)
  2. Server returns 402 Payment Required with payment details
  3. The x402 SDK automatically signs a payment authorization with your wallet
  4. The SDK resubmits the request with the signed payment
  5. Server verifies payment and returns the API response

The x402 SDK handles steps 2–5 automatically.

Network: Base (chain ID 8453) | Currency: USDC | Price: $0.05 per request


Related Endpoints

  • /api/v1/evm/clones/v3/pool - Returns current pool TVL, swap volume, fees APR, and other metrics for a specific pool
  • /api/v1/evm/aero/v2/pool - Get information for a specific Aerodrome V2 pool address
  • /api/v1/evm/price-current - Returns current price of a token calculated based on Uniswap V3 and clones liquidity pools