Cambrian V3 - List Pools API

By Cambrian Network base

GET /api/v1/evm/alien/v3/pools

Alien V3 Liquidity Pools

This endpoint returns a comprehensive list of all Alien V3 liquidity pools on Base, including detailed information about token pairs, fee structures, pool addresses, and creation timestamps. It provides essential data for analyzing DEX activity and liquidity distribution across the AlienBase DEX ecosystem.

Business Value

  • Pool Discovery: Identify all available liquidity pools with complete metadata including token symbols, decimals, and addresses
  • DEX Analytics: Analyze fee structures, tick spacing configurations, and pool creation patterns across different time periods
  • Portfolio Management: Track and monitor specific pools by filtering on token addresses or sorting by various metrics
  • Market Research: Understand the AlienBase ecosystem structure through comprehensive pool data including creation timestamps and fee tiers
  • Integration Support: Access standardized pool data for building applications, trading interfaces, or analytical tools

Endpoint Details

URL:

https://opabinia.cambrian.network/api/v1/evm/alien/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 for pagination (0-100000)
order_asc array No - List of column names to order by in ascending order
order_desc array No - List of column names to order by in descending order

Response Field Descriptions

Response Field Type Description
chainId UInt32 Blockchain chain ID (8453 for Base)
dexAddress String AlienBase DEX contract address
dexName String Name of the DEX (AlienBase)
poolAddress String Unique pool contract address
token0Address String Address of the first token in the pair
token0Symbol String Symbol of the first token
token0Decimals UInt8 Number of decimals for the first token
token1Address String Address of the second token in the pair
token1Symbol String Symbol of the second token
token1Decimals UInt8 Number of decimals for the second token
createdAt DateTime Timestamp when the pool was created (UTC)
fee UInt32 Pool fee in basis points (e.g., 3000 = 0.30%)
tickSpacing Int32 Tick spacing for the pool's price range

Examples

1. Basic Pool List

This example demonstrates how to retrieve the default list of Alien V3 pools with standard pagination.

curl -X GET "https://opabinia.cambrian.network/api/v1/evm/alien/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, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0xcbd28a9d7ed558a1c4a16bb6b0dfd093b0fbbf8d", "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", "MONSTRO", 18, "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "USDC", 6, "2026-01-27T17:14:43+00:00", 3000, 60],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x986efbfbd9c307ec6a3c8cac819bcb3009aa3261", "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", "MONSTRO", 18, "0x4200000000000000000000000000000000000006", "WETH", 18, "2026-01-27T16:56:17+00:00", 750, 15],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x3611eb2f746ce8474f6de3e587f7cfdc43211de4", "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", "MONSTRO", 18, "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "USDC", 6, "2026-01-27T15:11:13+00:00", 10000, 200],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x25c9bdb0885722bcd1033a844f409f2d22555d7c", "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4", "ALB", 18, "0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4", "TOSHI", 18, "2026-01-26T16:00:55+00:00", 10000, 200],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x8b5c02f704ef3128e799f3b0085a6c966b628e8b", "0x1dd2d631c92b1acdfcdd51a0f7145a50130050c4", "ALB", 18, "0x4200000000000000000000000000000000000006", "WETH", 18, "2026-01-16T16:50:25+00:00", 750, 15]
    ],
    "rows": 100
    // ... additional rows omitted for brevity
  }
]

This returns the first 100 pools with complete metadata including chain information, token details, fee structures, and creation timestamps for all AlienBase V3 liquidity pools.

2. Filtered Pool Search

This example demonstrates filtering pools by a specific token address to find all pools containing a particular token.

curl -X GET "https://opabinia.cambrian.network/api/v1/evm/alien/v3/pools?token_address=0x833589fcd6edb6e08f4c7c32d4f71b54bda02913&limit=50" \
  -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, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0xcbd28a9d7ed558a1c4a16bb6b0dfd093b0fbbf8d", "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", "MONSTRO", 18, "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "USDC", 6, "2026-01-27T17:14:43+00:00", 3000, 60],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x3611eb2f746ce8474f6de3e587f7cfdc43211de4", "0x1d3be1cc80ca89ddbabe5b5c254af63200e708f7", "MONSTRO", 18, "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "USDC", 6, "2026-01-27T15:11:13+00:00", 10000, 200],
      [8453, "0x0fd83557b2be93617c9c1c1b6fd549401c74558c", "AlienBase", "0x624ece2dbf07b0166fe74fd255b52d4cf5c839e5", "0x50c5725949a6f0c72e6c4a641f24049a917db0cb", "DAI", 18, "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "USDC", 6, "2025-12-10T00:40:11+00:00", 200, 4]
    ],
    "rows": 100
    // ... additional rows omitted for brevity
  }
]

This returns all pools containing USDC (0x833589fcd6edb6e08f4c7c32d4f71b54bda02913) as either token0 or token1, limited to 50 results, showing various token pairs with USDC and their respective fee structures.

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/alien/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/alien/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/alien/v3/pool - Returns current pool TVL, swap volume, fees APR, and other metrics for a specific AlienBase V3 pool
  • /api/v1/evm/aero/v2/pools - Returns a paginated list of Aerodrome V2 liquidity pools with summary metrics
  • /api/v1/evm/aero/v3/pool - Returns current pool TVL, swap volume, fees APR, and metrics for Aerodrome V3 pools
  • /api/v1/evm/aero/v2/pool - Get information for a specific Aerodrome V2 pool address