Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cryptovolume-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "quotes": [
            "USDT",
            "BTC",
            "ETH",
            "USDC",
            "FDUSD"
        ],
        "source": "Binance v3 24h ticker (live)",
        "service": "cryptovolume-api",
        "endpoints": {
            "GET /v1/top": "Most-traded pairs by 24h volume (quote=USDT|BTC|ETH|USDC, limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/pair": "A single pair's 24h stats (symbol=BTCUSDT)."
        },
        "usdt_pairs": 664,
        "description": "Live most-traded crypto pairs by 24h spot volume on Binance: pairs ranked by 24h quote volume (where the liquidity is) with last price, daily change, 24h high/low, base and quote volume and trade count. Rank by quote currency (USDT/BTC/ETH/USDC) or look one pair up. Live, no key. Distinct from price-change movers and DEX-volume APIs — this is centralised-exchange spot trading volume."
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:04.711Z",
        "request_id": "ce40c1d6-ad83-46d1-b45d-01e43cbeba39"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}