/v1/overview
Combined Aerodrome snapshot (TVL + volume + fees + top pool)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}