Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

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

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

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

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}