/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}