/v1/overview
Combined Aerodrome snapshot (TVL + volume + fees + top pool)
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/aerodrome-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aerodrome-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aerodrome-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/aerodrome-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 Aerodrome on Base: TVL, DEX volume, fees and the largest pool.",
"source": "DeFiLlama",
"fees_24h": 171929,
"fees_30d": 8615854,
"protocol": "Aerodrome",
"top_pool": {
"apy": 20.01,
"tvl": 20848403,
"symbol": "USDC-AERO",
"fee_apy": null,
"pool_id": "d32f9c01-47d1-4077-8c73-8b91b08d1e91",
"pool_type": "basic",
"stablecoin": false,
"volume_24h": null,
"emission_apy": 20.01,
"incentivized": true
},
"total_tvl": 301760612,
"volume_7d": 3744273939,
"pool_count": 416,
"volume_24h": 241438096
},
"meta": {
"timestamp": "2026-06-14T08:04:27.249Z",
"request_id": "47c72bbd-4b02-458c-9ea6-80b0ed2ba149"
},
"status": "ok",
"message": "Aerodrome overview retrieved successfully",
"success": true
}