/v1/fees
EigenLayer protocol fees (24h/7d/30d)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}