/v1/overview
Combined EigenLayer snapshot (restaked TVL + assets + top asset + fees)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}