/v1/meta
Service metadata
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/cryptofees-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptofees-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptofees-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/cryptofees-api/v1/meta",
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": {
"sorts": [
"24h",
"7d",
"30d",
"all"
],
"source": "DefiLlama fees overview (live)",
"service": "cryptofees-api",
"endpoints": {
"GET /v1/top": "Top protocols by fees (sort=24h|7d|30d|all, chain=, category=, limit).",
"GET /v1/meta": "This document.",
"GET /v1/total": "Market-wide fee totals and change.",
"GET /v1/search": "Search protocols by name or category (q=).",
"GET /v1/protocol": "One protocol's fees (name=, e.g. Tether)."
},
"description": "Live crypto protocol fee & revenue data from DefiLlama (overview/fees): fees paid over 24h/7d/30d, all-time total and period change, for thousands of protocols and chains. Rank top fee-earning protocols, drill into one, read the market-wide total, or search. Live, no key. Distinct from TVL, yield, stablecoin and price APIs — this is the fee/revenue surface.",
"total_fees_24h": 55779813,
"protocols_tracked": 2263
},
"meta": {
"timestamp": "2026-06-09T03:03:21.928Z",
"request_id": "ca699076-9a7d-4729-8553-1311668b3e01"
},
"status": "ok",
"message": "Meta",
"success": true
}