Cambrian V3 - List Pools API
GET /api/v1/evm/pancake/v3/pools
PancakeSwap V3 Pools List
This endpoint returns a comprehensive list of all PancakeSwap V3 liquidity pools across supported EVM chains, providing detailed information about token pairs, fee tiers, creation timestamps, and pool characteristics.
Business Value
- Pool Discovery: Identify all available liquidity pools for trading and liquidity provision strategies
- Market Analysis: Analyze pool distribution, fee structures, and token pair availability across chains
- Portfolio Management: Track and monitor multiple pools for yield farming and LP position management
- DeFi Integration: Build applications that require comprehensive pool data for routing and analytics
- Risk Assessment: Evaluate pool diversity and concentration for informed investment decisions
Endpoint Details
URL:
https://opabinia.cambrian.network/api/v1/evm/pancake/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 be a valid EVM address (0x followed by 40 hex characters) |
| limit | integer | No | 100 | Limit the number of results (1-1000) |
| offset | integer | No | 0 | Offset the results to skip a number of rows (0-100000) |
| order_asc | array | No | - | Column names to order by in ascending order (chainId, dexAddress, dexName, poolAddress, token0Address, token0Symbol, token0Decimals, token1Address, token1Symbol, token1Decimals, createdAt, fee, tickSpacing) |
| order_desc | array | No | - | Column names to order by in descending order (same options as order_asc) |
Response Field Descriptions
| Response Field | Type | Description |
|---|---|---|
| chainId | UInt32 | The blockchain network ID (e.g., 8453 for Base) |
| dexAddress | FixedString(42) | The DEX contract address |
| dexName | String | The name of the decentralized exchange (PancakeV3) |
| poolAddress | FixedString(42) | The unique pool contract address |
| token0Address | FixedString(42) | The contract address of the first token in the pair |
| token0Symbol | String | The symbol of the first token (e.g., USDC, WETH) |
| token0Decimals | UInt8 | The decimal precision of the first token |
| token1Address | FixedString(42) | The contract address of the second token in the pair |
| token1Symbol | String | The symbol of the second token |
| token1Decimals | UInt8 | The decimal precision of the second token |
| createdAt | DateTime | The timestamp when the pool was created (UTC) |
| fee | UInt32 | The pool fee tier in basis points (e.g., 2500 = 0.25%) |
| tickSpacing | Int32 | The tick spacing for the pool's price range |
Examples
1. List All Pools (Default)
Get the first 100 PancakeSwap V3 pools with default ordering.
curl -X GET "https://opabinia.cambrian.network/api/v1/evm/pancake/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,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0x6513faae3c52e258e2ca3128010d6e8a79b3c650",
"0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"USDC",
6,
"0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07",
"CLAWD",
18,
"2026-01-28T03:32:07+00:00",
2500,
50
],
[
8453,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0x73e4bd5d0dcb74ec490f87c7fd28dd4d0f63ceed",
"0x4200000000000000000000000000000000000006",
"WETH",
18,
"0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07",
"CLAWD",
18,
"2026-01-28T03:31:29+00:00",
2500,
50
],
[
8453,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0x7958461b3305b7b10c09be7634e142f0c29ca20a",
"0x4200000000000000000000000000000000000006",
"WETH",
18,
"0x9e4134ee06420dadec409603cbb74eeaf40bfd83",
"CHOG",
18,
"2026-01-27T20:12:15+00:00",
100,
1
],
[
8453,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0x767c89c3b18d7ea151cb5cc8ffcd474464bf9b50",
"0x2e5ea37df7373a6ac801c47b7adae2c2febba76a",
"tCHIP",
18,
"0x4200000000000000000000000000000000000006",
"WETH",
18,
"2026-01-27T15:55:49+00:00",
100,
1
],
[
8453,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0xa118e86670d4c2d0daa99c8f3da182713ac0ae0b",
"0x39f71b60f10194584aafab0186bf28d4cdb62cdc",
"TOXS",
18,
"0x4200000000000000000000000000000000000006",
"WETH",
18,
"2026-01-27T01:52:23+00:00",
100,
1
]
],
"rows": 5
// ... additional rows omitted for brevity
}
This response shows the most recent PancakeSwap V3 pools, including various token pairs like USDC/CLAWD, WETH/CLAWD, WETH/CHOG, tCHIP/WETH, and TOXS/WETH, all on the Base network (chainId: 8453) with different fee tiers.
2. Filter Pools by Token Address
Find all pools containing a specific token address.
curl -X GET "https://opabinia.cambrian.network/api/v1/evm/pancake/v3/pools?token_address=0x4200000000000000000000000000000000000006&limit=10" \
-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,
"0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
"PancakeV3",
"0x73e4bd5d0dcb74ec490f87c7fd28dd4d0f63ceed",
"0x4200000000000000000000000000000000000006",
"WETH",
18,
"0x9f86db9fc6f7c9408e8fda3ff8ce4e78ac7a6b07",
"CLAWD",
18,
"2026-01-28T03:31:29+00:00",
2500,
50
]
],
"rows": 1
}
This filtered response returns all pools that include WETH (Wrapped Ethereum) as either token0 or token1, helping identify trading pairs and liquidity opportunities for this specific 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/pancake/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/pancake/v3/pools")
print(response.json())
asyncio.run(main())
Payment Flow
- Send a normal request to the endpoint (no API key needed)
- Server returns
402 Payment Requiredwith payment details - The x402 SDK automatically signs a payment authorization with your wallet
- The SDK resubmits the request with the signed payment
- 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/pancake/v3/pool- Returns current pool TVL, Swap Volume, Fees APR, Price Tick Utilization, Number of Swaps and Unique users for recent time range/api/v1/evm/aero/v2/pools- This endpoint returns a paginated list of liquidity pools with summary metrics/api/v1/evm/aero/v2/pool- Get information for a specific Aerodrome V2 pool address/api/v1/evm/aero/v2/fee-metrics- Shows daily historical data to understand the fees over time on a pool/api/v1/evm/aero/v2/pool-volume- Helpful for aggregate statistics over a particular timeframe, with hourly data to understand distribution of recent activity