/v1/fees
PancakeSwap protocol fees (24h/7d/30d)
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/fees" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pancakeswap-api/v1/fees", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pancakeswap-api/v1/fees");
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/fees",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Trading fees paid by users across all PancakeSwap deployments, in USD.",
"chains": [
"BSC",
"Ethereum",
"Polygon zkEVM",
"ZKsync Era",
"Arbitrum",
"Linea",
"Base",
"OpBNB",
"Aptos",
"Solana",
"Monad"
],
"source": "DeFiLlama",
"fees_7d": 3019133,
"fees_24h": 455155,
"fees_30d": 10316312,
"protocol": "PancakeSwap",
"change_1d_pct": 35.17,
"change_7d_pct": null,
"fees_all_time": 1754543935
},
"meta": {
"timestamp": "2026-06-14T08:04:35.275Z",
"request_id": "fe446738-4c85-40aa-a455-a34f4cfbe3db"
},
"status": "ok",
"message": "PancakeSwap fees retrieved successfully",
"success": true
}