Skip to content
GET /v1/tvl

PancakeSwap TVL total and per-chain breakdown

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/pancakeswap-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/pancakeswap-api/v1/tvl" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pancakeswap-api/v1/tvl", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pancakeswap-api/v1/tvl");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/pancakeswap-api/v1/tvl",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": null,
        "chains": [
            {
                "tvl": 2128850430,
                "chain": "BSC"
            },
            {
                "tvl": 28888095,
                "chain": "Ethereum"
            },
            {
                "tvl": 19100962,
                "chain": "Base"
            },
            {
                "tvl": 7885551,
                "chain": "Solana"
            },
            {
                "tvl": 6763365,
                "chain": "Arbitrum"
            },
            {
                "tvl": 1798722,
                "chain": "Monad"
            },
            {
                "tvl": 932284,
                "chain": "Aptos"
            },
            {
                "tvl": 881991,
                "chain": "ZKsync Era"
            },
            {
                "tvl": 232246,
                "chain": "opBNB"
            },
            {
                "tvl": 164304,
                "chain": "Linea"
            },
            {
                "tvl": 44716,
                "chain": "Polygon zkEVM"
            }
        ],
        "source": "DeFiLlama",
        "protocol": "PancakeSwap",
        "total_tvl": 2195304992.66,
        "chain_count": 11
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:35.329Z",
        "request_id": "5211e635-9296-4632-b41e-1bcc5849ca6b"
    },
    "status": "ok",
    "message": "PancakeSwap TVL retrieved successfully",
    "success": true
}