Vai al contenuto
GET /v1/top

Most-traded pairs by 24h volume

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptovolume-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 20,
        "pairs": [
            {
                "base": "USDC",
                "rank": 1,
                "quote": "USDT",
                "symbol": "USDCUSDT",
                "low_24h": 1.00001,
                "high_24h": 1.0007,
                "change_pct": 0,
                "last_price": 1.00013,
                "trades_24h": 578094,
                "volume_24h_base": 1657380484,
                "volume_24h_quote": 1657826696.61487
            },
            {
                "base": "BTC",
                "rank": 2,
                "quote": "USDT",
                "symbol": "BTCUSDT",
                "low_24h": 62408,
                "high_24h": 64200,
                "change_pct": -0.39,
                "last_price": 62865.46,
                "trades_24h": 4671316,
                "volume_24h_base": 23159.81193,
                "volume_24h_quote": 1467594928.7537253
            },
            {
                "base": "ETH",
                "rank": 3,
                "quote": "USDT",
                "symbol": "ETHUSDT",
                "low_24h": 1645,
                "high_24h": 1714.5,
                "change_pct": -0.97,
                "last_price": 1666.93,
                "trades_24h": 5580137,
                "volume_24h_base": 472929.5716,
                "volume_24h_quote": 794835595.003867
            },
            {
                "base": "ZEC",
                "rank": 4,
                "quote": "USDT",
                "symbol": "ZECUSDT",
                "low_24h": 414.91,
                "high_24h": 477.02,
                "change_pct": 3.59,
                "last_price": 448.19,
                "trades_24h": 756730,
                "volume_24h_base": 468660.041,
                "volume_24h_quote": 207856992.37503
            },
            {
                "base": "SOL",
                "rank": 5,
                "quote": "USDT",
                "symbol": "SOLUSDT",
                "low_24h": 64.98,
                "high_24h": 68.17,
                "change_pct": -0.87,
                "last_price": 65.88,
                "trades_24h": 956061,
                "volume_24h_base": 3044044.445,
                "volume_24h_quote": 202807392.38525
            },
            {
                "base": "XRP",
                "rank": 6,
                "quote": "USDT",
                "symbol": "XRPUSDT",
                "low_24h": 1.1319,
                "high_24h": 1.1866,
                "change_pct": -0.19,
                "last_price": 1.154,
                "trades_24h": 759238,
                "volume_24h_base": 115775529.7,
                "volume_24h_quote": 134378154.46404
            },
            {
                "base": "USD1",
                "rank": 7,
                "quote": "USDT",
                "symbol": "USD1USDT",
                "low_24h": 0.99909,
                "high_24h": 0.99972,
                "change_pct": -0.05,
                "last_price": 0.99922,
      
…