/v1/overview
Combined EigenLayer snapshot (restaked TVL + assets + top asset + fees)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}