Vai al contenuto
GET /v1/overview

Combined EigenLayer snapshot (restaked TVL + assets + top asset + fees)

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/eigenlayer-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Snapshot of EigenLayer restaking: total restaked, number of restaked assets, the largest one and fees.",
        "source": "DeFiLlama",
        "fees_24h": 26184,
        "protocol": "EigenLayer",
        "top_asset": {
            "usd": 3868468160.55,
            "asset": "WETH",
            "share_pct": 82.79
        },
        "asset_count": 45,
        "chain_count": 1,
        "total_restaked_usd": 4672517308.35
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:33.706Z",
        "request_id": "4b77eb8d-1621-4e07-b03e-33895fe62c31"
    },
    "status": "ok",
    "message": "EigenLayer overview retrieved successfully",
    "success": true
}