Naar de inhoud
GET /v1/exchanges

Derivatives-exchange league table

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/derivatives-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 30,
        "exchanges": [
            {
                "id": "binance_futures",
                "name": "Binance (Futures)",
                "futures_pairs": 151,
                "volume_24h_btc": 670039.43,
                "perpetual_pairs": 589,
                "year_established": 2019,
                "open_interest_btc": 368317.54
            },
            {
                "id": "hyperliquid",
                "name": "Hyperliquid (Futures)",
                "futures_pairs": 0,
                "volume_24h_btc": 112235.54,
                "perpetual_pairs": 353,
                "year_established": 2023,
                "open_interest_btc": 167979.55
            },
            {
                "id": "bybit",
                "name": "Bybit (Futures)",
                "futures_pairs": 71,
                "volume_24h_btc": 145771.49,
                "perpetual_pairs": 710,
                "year_established": 2018,
                "open_interest_btc": 153364.8
            },
            {
                "id": "coinw_futures",
                "name": "CoinW (Futures)",
                "futures_pairs": 0,
                "volume_24h_btc": 397476.67,
                "perpetual_pairs": 296,
                "year_established": 2017,
                "open_interest_btc": 146536.48
            },
            {
                "id": "mxc_futures",
                "name": "MEXC (Futures)",
                "futures_pairs": 0,
                "volume_24h_btc": 154405.07,
                "perpetual_pairs": 1003,
                "year_established": 2020,
                "open_interest_btc": 141442.99
            },
            {
                "id": "gate_futures",
                "name": "Gate (Futures)",
                "futures_pairs": 0,
                "volume_24h_btc": 154103.72,
                "perpetual_pairs": 832,
                "year_established": 2013,
                "open_interest_btc": 140703.88
            },
            {
                "id": "weex-futures",
                "name": "WEEX (Futures)",
                "futures_pairs": 0,
                "volume_24h_btc": 197529.88,
                "perpetual_pairs": 849,
                "year_established": 2018,
                "open_interest_btc": 110521.65
            },
            {
                "id": "bitmart_futures",
                "name": "Bitmart Futures",
                "futures_pairs": 0,
                "volume_24h_btc": 96262.28,
                "perpetual_pairs": 905,
                "year_established": 1996,
                "open_interest_btc": 105621.88
            },
            {
                "id": "bitget_futures",
                "name": "Bitget Futures",
                "futures_pairs": 0,
                "volume_24h_btc": 106020.84,
                "perpetual_pairs": 770,
                "year_established": 2019,
                "open_interest_btc": 103920.41
            },
            {
                "id": "bydfi-futures",
 
…