Aller au contenu
GET /v1/overview

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

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/aave-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}