/v1/overview
Combined PancakeSwap snapshot (TVL + volume + fees + top pool)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/pancakeswap-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pancakeswap-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pancakeswap-api/v1/overview");
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/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Snapshot of PancakeSwap across all chains: TVL, DEX volume, fees and the single largest pool.",
"source": "DeFiLlama",
"fees_24h": 455155,
"fees_30d": 10316312,
"protocol": "PancakeSwap",
"top_pool": {
"apy": 0,
"tvl": 67518464,
"chain": "Arbitrum",
"symbol": "WETH-GFC",
"il_risk": "yes",
"pool_id": "d3abc08b-8d68-412c-9c77-f31b7bfba672",
"version": "v2",
"apy_base": 0,
"apy_reward": null,
"volume_24h": 0
},
"total_tvl": 2195304992.66,
"volume_7d": 5198311071,
"volume_24h": 527054731,
"chain_count": 11
},
"meta": {
"timestamp": "2026-06-14T08:04:35.196Z",
"request_id": "cf9d76b0-259b-4c1e-882c-354fa09a9245"
},
"status": "ok",
"message": "PancakeSwap overview retrieved successfully",
"success": true
}