Zum Inhalt springen
GET /v1/fees

EigenLayer protocol fees (24h/7d/30d)

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

Beispiel-Response

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

{
    "data": {
        "note": "Protocol fees across EigenLayer, in USD.",
        "chains": [
            "Ethereum"
        ],
        "source": "DeFiLlama",
        "fees_7d": 79091,
        "fees_24h": 26184,
        "fees_30d": 790586,
        "protocol": "EigenLayer",
        "change_1d_pct": 14286.81,
        "change_7d_pct": null,
        "fees_all_time": 160574477
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:33.784Z",
        "request_id": "029f55bd-aab6-4e69-803d-91da93b35af2"
    },
    "status": "ok",
    "message": "EigenLayer fees retrieved successfully",
    "success": true
}