Cambrian V3 - List Pools API

By Cambrian Network pancake

GET /api/v1/evm/pancake/v3/pools

PancakeSwap V3 Pool List

Overview

Returns a list of all PancakeSwap V3 liquidity pools on the specified EVM chain, including token pairs, fee tiers, and creation timestamps. Results can be filtered by a specific token address and sorted by any of the available columns.

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://api.cambrian.org/evm/pancake/v3/pools

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

Query Parameters

Parameter Type Required Default Description
chain_id integer No 8453 EVM chain ID.
token_address string No - Pool token address. See tokens for valid addresses.
limit integer No 100 Limit the number of results.
offset integer No 0 Offset the results, allows you to skip a number of rows before starting to return rows.
order_asc array No - List of column names to order by in ascending order divided by comma. Leave empty items to combine with descending order.
order_desc array No - List of column names to order by in descending order divided by comma. Leave empty items to combine with ascending order.

Response Field Descriptions

Response Field Type Description
chainId UInt16 EVM chain ID the pool exists on.
dexAddress FixedString(42) Contract address of the DEX factory/deployment.
dexName String Name of the DEX (e.g., PancakeV3).
poolAddress FixedString(42) Contract address of the liquidity pool.
token0Address String Contract address of the pool's first token.
token0Symbol String Symbol of the pool's first token.
token0Decimals UInt8 Decimal places of the pool's first token.
token1Address String Contract address of the pool's second token.
token1Symbol String Symbol of the pool's second token.
token1Decimals UInt8 Decimal places of the pool's second token.
createdAt DateTime('UTC') Timestamp when the pool was created.
fee UInt32 Pool fee tier, in hundredths of a basis point.
tickSpacing Int32 Minimum tick spacing for the pool.

Examples

1. List Recent Pools

Retrieve the most recently created PancakeSwap V3 pools on Base (chain ID 8453).

curl -X GET "https://api.cambrian.org/evm/pancake/v3/pools?chain_id=8453&limit=10" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

Note: This response has been truncated to the first 10 items per collection for documentation purposes; the rows field reflects the truncated count.

[
  {
    "columns": [
      {
        "name": "chainId",
        "type": "UInt16"
      },
      {
        "name": "dexAddress",
        "type": "FixedString(42)"
      },
      {
        "name": "dexName",
        "type": "String"
      },
      {
        "name": "poolAddress",
        "type": "FixedString(42)"
      },
      {
        "name": "token0Address",
        "type": "String"
      },
      {
        "name": "token0Symbol",
        "type": "String"
      },
      {
        "name": "token0Decimals",
        "type": "UInt8"
      },
      {
        "name": "token1Address",
        "type": "String"
      },
      {
        "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",
        "0xab6254061c6a382f04ba8d40ddf5f5c8a4766132",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x4200000000000000000000000000000000000006",
        "WETH",
        18,
        "2026-08-04T13:06:49+00:00",
        500,
        10
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0xac84c1ddb3af32261dce60d040b0ff9c812d2cb3",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-04T12:59:03+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0xbc3bb9735c675a579182e6a198c2982222ff5763",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x4200000000000000000000000000000000000006",
        "WETH",
        18,
        "2026-08-04T11:17:39+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x07ddac89189821ff7ce8fb3c0ba36b7e0b0487ec",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x4200000000000000000000000000000000000006",
        "WETH",
        18,
        "2026-08-04T10:26:35+00:00",
        10000,
        200
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x735937e28a89b8f48e36bb61d03fdfd5f3d7a337",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-04T08:54:11+00:00",
        10000,
        200
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0xbc9165c93a050941ca6b11b60540a9bfdd26265a",
        "0x584fbca587e2bbea9bec6cac60370f6ed20a49c4",
        "USDC",
        18,
        "0x715324e1567bf6c59d917edca0dea2f235a6320f",
        "ZEC",
        18,
        "2026-08-04T07:04:51+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0xb8a4fffdbf061fd80cc9c780d4ac466cb40bdeb4",
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "0xc3de830ea07524a0761646a6a4e4be0e114a3c83",
        "UNI",
        18,
        "2026-08-03T22:04:53+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x07c4bc0f5fb6cb069124df3e1ae0b8fd8148ccc4",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-03T15:39:01+00:00",
        100,
        1
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x2205fe810ad4c3cb07bff00afa6dc9c3b9a02af6",
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "0xef8e8032a3730a7f3516359524dbf97f67e3ac6d",
        "b3m",
        18,
        "2026-08-01T18:12:29+00:00",
        100,
        1
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x8d737d1304ab90e4c81b0528e33f385511596c0b",
        "0x4200000000000000000000000000000000000006",
        "WETH",
        18,
        "0xeb25035e8b481115145892a3f5e42455b7642302",
        "ANDY",
        18,
        "2026-07-31T22:48:09+00:00",
        500,
        10
      ]
    ],
    "rows": 10
  }
]

This returns the 10 most recently created PancakeSwap V3 pools on Base, showing a mix of token pairs (e.g., QUID/WETH, QUID/USDC, USDC/ZEC) along with their fee tiers ranging from 0.01% (100) to 1% (10000) and corresponding tick spacings.

2. Filter Pools by Token Address

Find all PancakeSwap V3 pools that include a specific token, such as USDC on Base.

curl -X GET "https://api.cambrian.org/evm/pancake/v3/pools?chain_id=8453&token_address=0x833589fcd6edb6e08f4c7c32d4f71b54bda02913&limit=5" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

Note: This response has been truncated to the first 10 items per collection for documentation purposes; the rows field reflects the truncated count.

[
  {
    "columns": [
      {
        "name": "chainId",
        "type": "UInt16"
      },
      {
        "name": "dexAddress",
        "type": "FixedString(42)"
      },
      {
        "name": "dexName",
        "type": "String"
      },
      {
        "name": "poolAddress",
        "type": "FixedString(42)"
      },
      {
        "name": "token0Address",
        "type": "String"
      },
      {
        "name": "token0Symbol",
        "type": "String"
      },
      {
        "name": "token0Decimals",
        "type": "UInt8"
      },
      {
        "name": "token1Address",
        "type": "String"
      },
      {
        "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",
        "0xac84c1ddb3af32261dce60d040b0ff9c812d2cb3",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-04T12:59:03+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x735937e28a89b8f48e36bb61d03fdfd5f3d7a337",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-04T08:54:11+00:00",
        10000,
        200
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0xb8a4fffdbf061fd80cc9c780d4ac466cb40bdeb4",
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "0xc3de830ea07524a0761646a6a4e4be0e114a3c83",
        "UNI",
        18,
        "2026-08-03T22:04:53+00:00",
        2500,
        50
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x07c4bc0f5fb6cb069124df3e1ae0b8fd8148ccc4",
        "0x1a44233fae8d50f1aeb3a5d58dd426ff4814cb53",
        "QUID",
        18,
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "2026-08-03T15:39:01+00:00",
        100,
        1
      ],
      [
        8453,
        "0x0bfbcf9fa4f9c56b0f40a671ad40e0805a091865",
        "PancakeV3",
        "0x2205fe810ad4c3cb07bff00afa6dc9c3b9a02af6",
        "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
        "USDC",
        6,
        "0xef8e8032a3730a7f3516359524dbf97f67e3ac6d",
        "b3m",
        18,
        "2026-08-01T18:12:29+00:00",
        100,
        1
      ]
    ],
    "rows": 5
  }
]

This returns all pools where USDC (0x833589fcd6edb6e08f4c7c32d4f71b54bda02913) is one of the paired tokens, useful for identifying every fee tier and counterpart token available for USDC trading on PancakeSwap V3.

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://x402.cambrian.org/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://x402.cambrian.org/evm/pancake/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 through 5 automatically.

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


Related Endpoints

  • /evm/pancake/v3/pool - Returns current pool TVL, swap volume, fees APR, price volatility, tick pressure, swap count, and unique users for a specific PancakeSwap V3 pool.
  • /evm/uniswap/v3/pools - Returns a list of all Uniswap V3 liquidity pools, including token pairs, fee tiers, and creation timestamps.
  • /evm/aero/v3/pools - Returns a list of all Aerodrome V3 liquidity pools, including token pairs, fee tiers, and creation timestamps.
  • /evm/tokens - Returns a list of all ERC20 tokens for the specified EVM chain, including their contract addresses, symbols, names, and decimal places.
  • /evm/price-current - Returns current price of a token calculated based on Uniswap V3 and clones liquidity pools.