Zum Inhalt springen
GET /v1/fees

PancakeSwap protocol fees (24h/7d/30d)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/pancakeswap-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}