Cambrian V3 - Pool Info API

By Cambrian Network base

GET /api/v1/evm/clones/v3/pool

Pool Info (Uniswap Clones V3)

Overview

Returns current pool TVL (Total Value Locked), Swap Volume, Fees APR (Annual Percentage Rate), Price volatility and mean adjusted volatility (percentage), Tick Pressure Per 1M$ Volume, Number of Swaps and Unique users for recent time range (5 minutes, 1 hour, 1 day, 1 week, 1 month and 1 year). This endpoint covers Uniswap V3 clone/fork deployments on supported EVM chains.

Business Value

  • Pool Analytics: Access comprehensive liquidity pool data for DeFi analysis and monitoring
  • Trading Intelligence: Get real-time price, liquidity, and trading volume metrics for informed decision making
  • Performance Tracking: Monitor fee APRs, tick utilization, and swap activity across different time periods
  • Token Information: Retrieve detailed token pair data including addresses, symbols, and decimals
  • Risk Assessment: Analyze pool TVL, liquidity distribution, and trading patterns for risk management

Endpoint Details

URL:

https://api.cambrian.org/evm/clones/v3/pool

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

Query Parameters

Parameter Type Required Default Description
chain_id integer No 8453 EVM chain ID.
pool_address string Yes - Pool address with 0x prefix

Response Field Descriptions

Response Field Type Description
createdAt DateTime('UTC') Timestamp when the pool was created.
token0Address String Contract address of token0 in the pool.
token0Symbol String Symbol of token0.
token0Decimals UInt8 Decimal places for token0.
token1Address String Contract address of token1 in the pool.
token1Symbol String Symbol of token1.
token1Decimals UInt8 Decimal places for token1.
feeTier UInt32 Pool fee tier (in hundredths of a bip, e.g. 500 = 0.05%).
tickSpacing Int32 Minimum tick spacing allowed for the pool.
currentLiquidity Nullable(Int256) Current on-chain liquidity value of the pool.
currentSqrtPriceX96 Nullable(UInt256) Current pool price expressed as sqrtPriceX96 (Uniswap V3 format).
currentTick Nullable(Int32) Current active tick of the pool.
currentPoolPrice Nullable(Float64) Current pool price of token0 in terms of token1 (human-readable).
poolTvlUsd Nullable(Float64) Current Total Value Locked in the pool, denominated in USD.
swapVolumeUsd Map(String,Nullable(Float64)) Swap volume in USD, keyed by time range (5 minute, 1 hour, 1 day, 1 week, 1 month, 1 year).
feeApr Map(String,Nullable(Float64)) Fee-based Annual Percentage Rate, keyed by time range.
priceVolatilityPct Map(String,Float64) Price volatility percentage, keyed by time range.
priceVolatilityAdjustedPct Map(String,Float64) Mean-adjusted price volatility percentage, keyed by time range.
tickPressurePer1MUsd Map(String,Nullable(Float64)) Tick pressure per $1M of volume, keyed by time range.
swapCount Map(String,UInt64) Number of swaps executed in the pool, keyed by time range.
uniqueUserCount Map(String,UInt64) Number of unique users who swapped in the pool, keyed by time range.

Examples

1. Get Current Pool Info for a Base Uniswap V3 Clone Pool

This example retrieves the current TVL, price, and multi-timeframe volume/APR metrics for a specific pool (WBTC/cbBTC) on Base (chain ID 8453).

curl -X GET "https://api.cambrian.org/evm/clones/v3/pool?chain_id=8453&pool_address=0x5fdb371f38e2713139446a22b6472705c2cd3c9e" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

Note: Result collections in this example are limited to the first 10 items; the response structure and metadata are otherwise unchanged.

[
  {
    "columns": [
      { "name": "createdAt", "type": "DateTime('UTC')" },
      { "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": "feeTier", "type": "UInt32" },
      { "name": "tickSpacing", "type": "Int32" },
      { "name": "currentLiquidity", "type": "Nullable(Int256)" },
      { "name": "currentSqrtPriceX96", "type": "Nullable(UInt256)" },
      { "name": "currentTick", "type": "Nullable(Int32)" },
      { "name": "currentPoolPrice", "type": "Nullable(Float64)" },
      { "name": "poolTvlUsd", "type": "Nullable(Float64)" },
      { "name": "swapVolumeUsd", "type": "Map(String,Nullable(Float64))" },
      { "name": "feeApr", "type": "Map(String,Nullable(Float64))" },
      { "name": "priceVolatilityPct", "type": "Map(String,Float64)" },
      { "name": "priceVolatilityAdjustedPct", "type": "Map(String,Float64)" },
      { "name": "tickPressurePer1MUsd", "type": "Map(String,Nullable(Float64))" },
      { "name": "swapCount", "type": "Map(String,UInt64)" },
      { "name": "uniqueUserCount", "type": "Map(String,UInt64)" }
    ],
    "data": [
      [
        "2025-05-19T12:40:57+00:00",
        "0x0555e30da8f98308edb960aa94c0db47230d2b9c",
        "WBTC",
        8,
        "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
        "cbBTC",
        8,
        500,
        10,
        "1450597",
        "79221440124519138490223773807",
        -2,
        0.9998303102245572,
        2.045655168407765,
        {
          "1 day": 0.4214282629809602,
          "1 hour": 0,
          "1 month": 0.4214282629809602,
          "1 week": 0.4214282629809602,
          "1 year": 70.47077914092279,
          "5 minute": 0
        },
        {
          "1 day": 0.03759707852124883,
          "1 hour": 0,
          "1 month": 0.001236068334945167,
          "1 week": 0.005356296118095723,
          "1 year": 0.017224501037428924,
          "5 minute": 0
        },
        {
          "1 day": 0,
          "1 hour": 0,
          "1 month": 0,
          "1 week": 0,
          "1 year": 1,
          "5 minute": 0
        },
        {
          "1 day": 0,
          "1 hour": 0,
          "1 month": 0,
          "1 week": 0,
          "1 year": 1,
          "5 minute": 0
        },
        {
          "1 day": 0,
          "1 hour": 0,
          "1 month": 0,
          "1 week": 0,
          "1 year": 3779038677.3991437,
          "5 minute": 0
        },
        {
          "1 day": 1,
          "1 hour": 0,
          "1 month": 1,
          "1 week": 1,
          "1 year": 153,
          "5 minute": 0
        },
        {
          "1 day": 1,
          "1 hour": 0,
          "5 minute": 0
        }
      ]
    ],
    "rows": 1
  }
]

This pool (WBTC/cbBTC, 0.05% fee tier) currently has a TVL of roughly $2.05, a current price of ~0.99983, and shows minimal recent trading activity — with a single swap over the past day/week/month, 153 swaps over the past year, and near-zero volatility across most timeframes.

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/clones/v3/pool"
);
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/clones/v3/pool")
        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

  • /evm/clones/v3/pools - Returns a list of all liquidity pools, including token pairs, fee tiers, and creation timestamps.
  • /evm/price-current - Returns current price of a token calculated based on uniswap v3 and clones liquidity pools.
  • /evm/uniswap/v3/pool - Returns current pool TVL, Swap Volume, Fees APR, Price volatility, Tick Pressure, Swap Count, and Unique users for recent time ranges.
  • /evm/tokens - Returns a list of all ERC20 tokens for the specified EVM chain, including contract addresses, symbols, names, and decimal places.
  • /evm/dexes - List of DEXes on EVM compatible chains.