/v1/fees
Aave 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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}