/v1/overview
Combined Aave snapshot (TVL + fees + markets + top market)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}