Skip to content
GET /v1/trending

Trending coins right now

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/cryptomarket-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "coins": [
            {
                "id": "humanity",
                "name": "Humanity",
                "symbol": "H",
                "price_usd": 0.2077520717087282,
                "market_cap": "$376,009,026",
                "market_cap_rank": 122,
                "price_change_24h_pct": -70.98
            },
            {
                "id": "xmaquina",
                "name": "XMAQUINA",
                "symbol": "DEUS",
                "price_usd": 0.03715363193318744,
                "market_cap": "$18,728,130",
                "market_cap_rank": 846,
                "price_change_24h_pct": 10.75
            },
            {
                "id": "konet",
                "name": "KONET",
                "symbol": "KONET",
                "price_usd": 0.053780190867659915,
                "market_cap": "$24,069,569",
                "market_cap_rank": 729,
                "price_change_24h_pct": 8.81
            },
            {
                "id": "pudgy-penguins",
                "name": "Pudgy Penguins",
                "symbol": "PENGU",
                "price_usd": 0.006715345784838958,
                "market_cap": "$422,107,920",
                "market_cap_rank": 113,
                "price_change_24h_pct": -2.78
            },
            {
                "id": "sahara-ai",
                "name": "Sahara AI",
                "symbol": "SAHARA",
                "price_usd": 0.02054247493992795,
                "market_cap": "$69,785,312",
                "market_cap_rank": 346,
                "price_change_24h_pct": -47
            },
            {
                "id": "bitcoin",
                "name": "Bitcoin",
                "symbol": "BTC",
                "price_usd": 62566.26298394291,
                "market_cap": "$1,253,917,320,196",
                "market_cap_rank": 1,
                "price_change_24h_pct": -1.56
            },
            {
                "id": "zcash",
                "name": "Zcash",
                "symbol": "ZEC",
                "price_usd": 467.3400163894035,
                "market_cap": "$7,825,346,856",
                "market_cap_rank": 15,
                "price_change_24h_pct": 7.81
            },
            {
                "id": "solstice",
                "name": "Solstice",
                "symbol": "SLX",
                "price_usd": 0.2264579498450219,
                "market_cap": "$54,867,122",
                "market_cap_rank": 425,
                "price_change_24h_pct": 28.78
            },
            {
                "id": "audiera",
                "name": "Audiera",
                "symbol": "BEAT",
                "price_usd": 4.530620241134442,
                "market_cap": "$1,326,581,884",
                "market_cap_rank": 57,
                "price_change_24h_pct": 3.04
            },
            {
                "id": "hyperliquid",
                "name": "Hyperliquid",
                "symbol": "HYPE",
                "p
…