Naar de inhoud
GET /v1/overview

Combined Aerodrome snapshot (TVL + volume + fees + top pool)

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/aerodrome-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}