Naar de inhoud
GET /v1/meta

Service metadata & live sample

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/aave-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aave-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aave-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "markets takes optional version (v3, v4), chain (e.g. Ethereum, Base, Arbitrum), stablecoin (true/false), min_tvl, limit (1-100) and sort (tvl, supply_apy or apy). All money values are USD; APYs are percentages. Other endpoints take no parameters.",
        "sample": {
            "total_tvl": 12963156857,
            "market_count": 236
        },
        "source": "DeFiLlama open API (yields.llama.fi + api.llama.fi), live",
        "service": "aave-api",
        "endpoints": {
            "GET /v1/tvl": "Aave TVL total and per-chain breakdown.",
            "GET /v1/fees": "Aave protocol fees (24h/7d/30d).",
            "GET /v1/meta": "This document.",
            "GET /v1/markets": "Per-asset Aave lending markets with supply APY and TVL (version, chain, stablecoin, sort).",
            "GET /v1/overview": "Combined Aave snapshot (TVL + fees + market count + top market)."
        },
        "description": "Live protocol metrics for Aave, the largest decentralized lending protocol, keyless. Total value locked across every chain Aave is deployed on, the per-asset lending markets with supply APY (base + rewards), 30-day average and TVL across Aave v3/v4, and protocol fees. One combined overview snapshots it all. Live, nothing stored beyond a short protective cache. The Aave-metrics layer for DeFi dashboards, yield, lending and risk apps. Distinct from DEX and generic DeFi/TVL browsers — Aave's lending markets specifically, multi-chain.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:38.271Z",
        "request_id": "c3a9fcc1-f368-4d96-889b-2d39afa25946"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}