Skip to content
GET /v1/meta

Spec

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

Example response

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

{
    "data": {
        "note": "Trending = ranked by CoinGecko search popularity over the last 24h (rank 1 = most searched). Prices in USD. A 60s protective cache shields the shared upstream rate limit.",
        "source": "CoinGecko /search/trending (live, keyless)",
        "service": "cryptotrending-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/nfts": "Trending NFT collections with floor price (limit=10).",
            "GET /v1/coins": "Trending coins ranked by search popularity (limit=15).",
            "GET /v1/categories": "Trending categories / narratives (limit=10)."
        },
        "description": "What the crypto market is searching for right now — live trending coins, NFT collections and categories from the public CoinGecko trending feed. Hype / attention data, distinct from market-cap rankings, exchange tickers and DeFi feeds: the assets with the biggest spike in search interest over the last 24 hours. The coins endpoint ranks trending coins by search popularity with price, 24h change, market cap, volume and market-cap rank; the nfts endpoint returns trending NFT collections with floor price and 24h change; the categories endpoint returns trending narratives/sectors with market cap and 24h change. Live, no key.",
        "trending_coins": 15,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:28.694Z",
        "request_id": "1b9e3025-c238-412e-a27f-38fdda721e4e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}