Skip to content
GET /v1/categories

Trending categories / narratives

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cryptotrending-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 6,
        "source": "CoinGecko",
        "categories": [
            {
                "id": 10650,
                "name": "Arcade Games",
                "rank": 1,
                "slug": "arcade-games",
                "coins_count": 40,
                "market_cap_usd": 2587504772.704526,
                "total_volume_usd": 375450402.16544336,
                "market_cap_1h_change_pct": 4.0759,
                "market_cap_change_24h_pct": 82.5413
            },
            {
                "id": 202,
                "name": "Telegram Apps",
                "rank": 2,
                "slug": "telegram_apps",
                "coins_count": 147,
                "market_cap_usd": 2971091255.2292776,
                "total_volume_usd": 434066341.57469344,
                "market_cap_1h_change_pct": 3.9376,
                "market_cap_change_24h_pct": 65.5405
            },
            {
                "id": 153,
                "name": "Decentralized Identifier (DID)",
                "rank": 3,
                "slug": "identity",
                "coins_count": 64,
                "market_cap_usd": 2480412408.176342,
                "total_volume_usd": 808450276.0726738,
                "market_cap_1h_change_pct": 3.1347,
                "market_cap_change_24h_pct": -2.0883
            },
            {
                "id": 107,
                "name": "Launchpad",
                "rank": 4,
                "slug": "launchpad",
                "coins_count": 198,
                "market_cap_usd": 4939942844.550987,
                "total_volume_usd": 329139264.50987315,
                "market_cap_1h_change_pct": 1.8795,
                "market_cap_change_24h_pct": -11.3108
            },
            {
                "id": 61,
                "name": "Gaming (GameFi)",
                "rank": 5,
                "slug": "gaming",
                "coins_count": 816,
                "market_cap_usd": 6147189913.832488,
                "total_volume_usd": 830048818.2050439,
                "market_cap_1h_change_pct": 1.8735,
                "market_cap_change_24h_pct": 23.2674
            },
            {
                "id": 20767,
                "name": "Echo Launchpad",
                "rank": 6,
                "slug": "echo-launchpad",
                "coins_count": 2,
                "market_cap_usd": 2440513435.8338723,
                "total_volume_usd": 91796950.58605193,
                "market_cap_1h_change_pct": 1.7329,
                "market_cap_change_24h_pct": -19.8127
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:28.415Z",
        "request_id": "9ba449bd-2a8a-472e-9454-779a3b71a815"
    },
    "status": "ok",
    "message": "Trending categories retrieved successfully",
    "success": true
}