/v1/meta
Service metadata & live sample
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/pancakeswap-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pancakeswap-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pancakeswap-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "pools takes optional version (v2, v3), chain (e.g. BSC, Ethereum, Arbitrum), limit (1-100), min_tvl and sort (tvl or apy). All money values are USD. Other endpoints take no parameters.",
"sample": {
"total_tvl": 2195304992.66,
"volume_24h": 527054731
},
"source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
"service": "pancakeswap-api",
"endpoints": {
"GET /v1/tvl": "PancakeSwap TVL total and per-chain breakdown.",
"GET /v1/fees": "PancakeSwap protocol fees (24h/7d/30d).",
"GET /v1/meta": "This document.",
"GET /v1/pools": "Top PancakeSwap liquidity pools with TVL and APY (version, chain, limit, sort).",
"GET /v1/volume": "PancakeSwap DEX trading volume (24h/7d/30d/all-time, with change).",
"GET /v1/overview": "Combined PancakeSwap snapshot (TVL + volume + fees + top pool)."
},
"description": "Live protocol metrics for PancakeSwap, the largest DEX on the BNB Chain (and live on Ethereum, Arbitrum, Linea, zkSync and more), keyless. Total value locked across every chain, DEX trading volume (24h/7d/30d/all-time with change), protocol fees, and the top PancakeSwap liquidity pools (AMM v2/v3) with TVL and APY. Live, nothing stored beyond a short protective cache. The PancakeSwap-metrics layer for DeFi dashboards, BNB-Chain analytics, yield and trading apps. Distinct from Ethereum-DEX and generic DeFi/TVL browsers — PancakeSwap specifically.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:35.569Z",
"request_id": "5f493f12-bcab-4ffb-a2fd-da7abeb1d036"
},
"status": "ok",
"message": "Meta",
"success": true
}