Vai al contenuto
GET /v1/fees

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

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/aerodrome-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/aerodrome-api/v1/fees" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aerodrome-api/v1/fees", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aerodrome-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/aerodrome-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 on Aerodrome, in USD.",
        "chains": [
            "Base"
        ],
        "source": "DeFiLlama",
        "fees_7d": 1749043,
        "fees_24h": 171929,
        "fees_30d": 8615854,
        "protocol": "Aerodrome",
        "change_1d_pct": -6.82,
        "change_7d_pct": null,
        "fees_all_time": 350037279
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:27.328Z",
        "request_id": "f3d21545-f998-4490-b4ab-6ae965f10306"
    },
    "status": "ok",
    "message": "Aerodrome fees retrieved successfully",
    "success": true
}