Zum Inhalt springen
GET /v1/meta

Service metadata & live sample

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/eigenlayer-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "assets takes optional limit (1-100) and min_usd. All money values are USD. Other endpoints take no parameters.",
        "sample": {
            "top_asset": "WETH",
            "total_restaked_usd": 4672517308.35
        },
        "source": "DeFiLlama open API (api.llama.fi), live",
        "service": "eigenlayer-api",
        "endpoints": {
            "GET /v1/tvl": "Total value restaked into EigenLayer (total + per-chain).",
            "GET /v1/fees": "EigenLayer protocol fees (24h/7d/30d).",
            "GET /v1/meta": "This document.",
            "GET /v1/assets": "Restaked-asset breakdown — which ETH / LSTs are restaked, by USD and share.",
            "GET /v1/overview": "Combined EigenLayer snapshot (restaked TVL + assets + top asset + fees)."
        },
        "description": "Live protocol metrics for EigenLayer (EigenCloud), the protocol that pioneered restaking on Ethereum, keyless. Total value restaked, the breakdown of which assets are restaked (native ETH and liquid-staking tokens like stETH, ETHx, swETH, rETH), per-chain TVL and protocol fees. One combined overview snapshots it all. Live, nothing stored beyond a short protective cache. The restaking-metrics layer for DeFi dashboards, staking, LRT and risk apps. Distinct from DEX, lending and generic TVL browsers — EigenLayer restaking specifically, including the restaked-asset composition.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:33.978Z",
        "request_id": "e76e1a26-db89-411e-be87-529bdfe2e8ba"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}