Ir al contenido
GET /v1/exchanges

Derivatives venues ranked by open interest or volume

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/derivativesexchanges-api/v1/exchanges" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/derivativesexchanges-api/v1/exchanges", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/derivativesexchanges-api/v1/exchanges");
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/derivativesexchanges-api/v1/exchanges",
    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": 50,
        "order": "open_interest_btc_desc",
        "source": "CoinGecko",
        "exchanges": [
            {
                "id": "binance_futures",
                "url": "https://www.binance.com/",
                "name": "Binance (Futures)",
                "rank": 1,
                "country": "Cayman Islands",
                "futures_pairs": 108,
                "volume_24h_btc": 965098.28,
                "perpetual_pairs": 593,
                "year_established": 2019,
                "open_interest_btc": 346539.95
            },
            {
                "id": "bybit",
                "url": "https://www.bybit.com",
                "name": "Bybit (Futures)",
                "rank": 2,
                "country": "Seychelles",
                "futures_pairs": 69,
                "volume_24h_btc": 254676.82,
                "perpetual_pairs": 687,
                "year_established": 2018,
                "open_interest_btc": 148633.84
            },
            {
                "id": "hyperliquid",
                "url": "https://hyperfoundation.org/",
                "name": "Hyperliquid (Futures)",
                "rank": 3,
                "country": "Cayman Islands",
                "futures_pairs": 0,
                "volume_24h_btc": 176281.72,
                "perpetual_pairs": 355,
                "year_established": 2023,
                "open_interest_btc": 139011.22
            },
            {
                "id": "mxc_futures",
                "url": "https://www.mexc.com/",
                "name": "MEXC (Futures)",
                "rank": 4,
                "country": "Seychelles",
                "futures_pairs": 0,
                "volume_24h_btc": 251387.77,
                "perpetual_pairs": 933,
                "year_established": 2020,
                "open_interest_btc": 130334.03
            },
            {
                "id": "gate_futures",
                "url": "https://www.gate.com/futures",
                "name": "Gate (Futures)",
                "rank": 5,
                "country": "Panama",
                "futures_pairs": 0,
                "volume_24h_btc": 211598.29,
                "perpetual_pairs": 755,
                "year_established": 2013,
                "open_interest_btc": 127734.96
            },
            {
                "id": "weex-futures",
                "url": "https://www.weex.com/",
                "name": "WEEX (Futures)",
                "rank": 6,
                "country": "Singapore",
                "futures_pairs": 0,
                "volume_24h_btc": 318972.98,
                "perpetual_pairs": 752,
                "year_established": 2018,
                "open_interest_btc": 105343.06
            },
            {
                "id": "coinw_futures",
                "url": "https://www.coinw.com/",
                "name": "CoinW (Futures)",
                "rank": 7,
                "country": null,
                "future
…