/v1/overview
Combined Aave snapshot (TVL + fees + markets + top market)
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/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aave-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aave-api/v1/overview");
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/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Snapshot of Aave across all chains: TVL, number of markets, fees and the single largest market.",
"source": "DeFiLlama",
"fees_24h": 953153,
"fees_30d": 41761086,
"protocol": "Aave",
"total_tvl": 12963156857,
"top_market": {
"tvl": 1965844568,
"asset": "WBTC",
"chain": "Ethereum",
"il_risk": "no",
"pool_id": "7e382157-b1bc-406d-b17b-facba43b716e",
"version": "v3",
"total_apy": 0.01,
"reward_apy": null,
"stablecoin": false,
"supply_apy": 0.01,
"apy_30d_avg": 0.01
},
"chain_count": 16,
"market_count": 236
},
"meta": {
"timestamp": "2026-06-14T08:04:37.956Z",
"request_id": "e12df54a-0b86-4596-8b1a-c2277d949903"
},
"status": "ok",
"message": "Aave overview retrieved successfully",
"success": true
}