Ir al contenido
GET /v1/top

Largest contracts market-wide

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "count": 20,
        "contracts": [
            {
                "price": 63595.7,
                "symbol": "BTCUSDT",
                "exchange": "Binance (Futures)",
                "basis_pct": 0.046,
                "underlying": "BTC",
                "contract_type": "perpetual",
                "last_traded_at": 1786488738,
                "volume_24h_usd": 6735511402,
                "funding_rate_pct": 0.01,
                "open_interest_usd": 6954453921,
                "price_change_24h_pct": -0.551
            },
            {
                "price": 1879.47,
                "symbol": "ETHUSDT",
                "exchange": "Binance (Futures)",
                "basis_pct": 0.0606,
                "underlying": "ETH",
                "contract_type": "perpetual",
                "last_traded_at": 1786488738,
                "volume_24h_usd": 4965057506,
                "funding_rate_pct": 0.01,
                "open_interest_usd": 4421649633,
                "price_change_24h_pct": 0.255
            },
            {
                "price": 63536,
                "symbol": "BTC_USDT",
                "exchange": "Gate (Futures)",
                "basis_pct": 0.0577,
                "underlying": "BTC",
                "contract_type": "perpetual",
                "last_traded_at": 1786488909,
                "volume_24h_usd": 2333423136,
                "funding_rate_pct": 0.0023,
                "open_interest_usd": 4355410793,
                "price_change_24h_pct": -0.537
            },
            {
                "price": 63574.99,
                "symbol": "BTC/USDT",
                "exchange": "CoinW (Futures)",
                "basis_pct": 0,
                "underlying": "BTC",
                "contract_type": "perpetual",
                "last_traded_at": 1786488955,
                "volume_24h_usd": 4095135589,
                "funding_rate_pct": 0.01,
                "open_interest_usd": 4234592766,
                "price_change_24h_pct": -0.55
            },
            {
                "price": 63582.18,
                "symbol": "BTC-PERPUSDT",
                "exchange": "Tapbit (Futures)",
                "basis_pct": 0.0016,
                "underlying": "BTC",
                "contract_type": "perpetual",
                "last_traded_at": 1786489191,
                "volume_24h_usd": 4473393542,
                "funding_rate_pct": 0.01,
                "open_interest_usd": 3833530984,
                "price_change_24h_pct": -0.554
            },
            {
                "price": 63540,
                "symbol": "BTCUSDT",
                "exchange": "Bybit (Futures)",
                "basis_pct": 0.0545,
                "underlying": "BTC",
                "contract_type": "perpetual",
                "last_traded_at": 1786489355,
                "volume_24h_usd": 3197315785,
                "funding_rate_pct": 0.00207,
                "open_interest_usd": 3805107854,
              
…