/v1/volume
Aerodrome DEX trading volume (24h/7d/30d/all-time, with change)
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/volume" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aerodrome-api/v1/volume", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aerodrome-api/v1/volume");
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/volume",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "DEX trading volume on Aerodrome (Base), in USD.",
"chains": [
"Base"
],
"source": "DeFiLlama",
"protocol": "Aerodrome",
"volume_7d": 3744273939,
"volume_24h": 241438096,
"volume_30d": 17993959833,
"change_1d_pct": -43.07,
"change_7d_pct": null,
"change_30d_pct": null,
"volume_all_time": 391420790365
},
"meta": {
"timestamp": "2026-06-14T08:04:27.466Z",
"request_id": "5a535774-a574-4ebd-b9d1-5636ec7b6077"
},
"status": "ok",
"message": "Aerodrome volume retrieved successfully",
"success": true
}