Zum Inhalt springen
GET /v1/fees

Aave 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/aave-api

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/aave-api/v1/fees" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aave-api/v1/fees", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aave-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/aave-api/v1/fees",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Interest and protocol fees paid across all Aave deployments, in USD.",
        "chains": [
            "Ethereum",
            "Polygon",
            "Avalanche",
            "Fantom",
            "Arbitrum",
            "OP Mainnet",
            "Metis",
            "Base",
            "Gnosis",
            "BSC",
            "Scroll",
            "ZKsync Era",
            "Linea",
            "Celo",
            "Sonic",
            "Soneium",
            "Plasma",
            "Mantle",
            "MegaETH",
            "X Layer"
        ],
        "source": "DeFiLlama",
        "fees_7d": 6740439,
        "fees_24h": 953153,
        "fees_30d": 41761086,
        "protocol": "Aave",
        "change_1d_pct": -1.07,
        "change_7d_pct": null,
        "fees_all_time": 2196430476
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:38.044Z",
        "request_id": "408f7d6a-6d55-43a3-a9ae-641b0787feed"
    },
    "status": "ok",
    "message": "Aave fees retrieved successfully",
    "success": true
}