Zum Inhalt springen
GET /v1/overview

Combined Aave snapshot (TVL + fees + markets + top market)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/aave-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}