Zum Inhalt springen
GET /v1/categories

Ranked crypto sectors

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "sort": "market_cap",
        "count": 50,
        "categories": [
            {
                "id": "smart-contract-platform",
                "name": "Smart Contract Platform",
                "top_coins": [
                    "bitcoin",
                    "ethereum",
                    "binancecoin"
                ],
                "market_cap": 1791934975772,
                "updated_at": "2026-06-09T11:37:18.336Z",
                "volume_24h": 63741127505,
                "market_cap_change_24h_pct": -1
            },
            {
                "id": "layer-1",
                "name": "Layer 1 (L1)",
                "top_coins": [
                    "bitcoin",
                    "ethereum",
                    "binancecoin"
                ],
                "market_cap": 1769053142410,
                "updated_at": "2026-06-09T11:36:52.875Z",
                "volume_24h": 61748726048,
                "market_cap_change_24h_pct": -0.97
            },
            {
                "id": "proof-of-work-pow",
                "name": "Proof of Work (PoW)",
                "top_coins": [
                    "bitcoin",
                    "dogecoin",
                    "zcash"
                ],
                "market_cap": 1293484074076,
                "updated_at": "2026-06-09T11:36:56.148Z",
                "volume_24h": 36511709163,
                "market_cap_change_24h_pct": -0.99
            },
            {
                "id": "world-liberty-financial-portfolio",
                "name": "World Liberty Financial Portfolio",
                "top_coins": [
                    "ethereum",
                    "tether",
                    "usd-coin"
                ],
                "market_cap": 513881407439,
                "updated_at": "2026-06-09T11:32:40.475Z",
                "volume_24h": 89313846386,
                "market_cap_change_24h_pct": -0.47
            },
            {
                "id": "proof-of-stake-pos",
                "name": "Proof of Stake (PoS)",
                "top_coins": [
                    "ethereum",
                    "binancecoin",
                    "solana"
                ],
                "market_cap": 393857783019,
                "updated_at": "2026-06-09T11:36:49.579Z",
                "volume_24h": 23002307338,
                "market_cap_change_24h_pct": -0.83
            },
            {
                "id": "stablecoins",
                "name": "Stablecoins",
                "top_coins": [
                    "tether",
                    "usd-coin",
                    "usds"
                ],
                "market_cap": 312291346660,
                "updated_at": "2026-06-09T11:32:49.512Z",
                "volume_24h": 73526491662,
                "market_cap_change_24h_pct": 0.15
            },
            {
                "id": "usd-stablecoin",
                "name": "USD Stablecoin",
                "top_coins": [
                   
…