Naar de inhoud
GET /v1/list

All derivatives-exchange ids and names

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 202,
        "source": "CoinGecko",
        "exchanges": [
            {
                "id": "binance_futures",
                "name": "Binance (Futures)"
            },
            {
                "id": "bybit",
                "name": "Bybit (Futures)"
            },
            {
                "id": "ftx",
                "name": "FTX (Derivatives)"
            },
            {
                "id": "hyperliquid",
                "name": "Hyperliquid (Futures)"
            },
            {
                "id": "mxc_futures",
                "name": "MEXC (Futures)"
            },
            {
                "id": "gate_futures",
                "name": "Gate (Futures)"
            },
            {
                "id": "coinw_futures",
                "name": "CoinW (Futures)"
            },
            {
                "id": "weex-futures",
                "name": "WEEX (Futures)"
            },
            {
                "id": "bitmart_futures",
                "name": "Bitmart Futures"
            },
            {
                "id": "okex_swap",
                "name": "OKX (Futures)"
            },
            {
                "id": "bitget_futures",
                "name": "Bitget Futures"
            },
            {
                "id": "xt_derivatives",
                "name": "XT.COM (Derivatives)"
            },
            {
                "id": "toobit_derivatives",
                "name": "Toobit Futures"
            },
            {
                "id": "kumex",
                "name": "KuCoin Futures"
            },
            {
                "id": "bydfi-futures",
                "name": "BYDFi (Futures)"
            },
            {
                "id": "orangex_futures",
                "name": "OrangeX Futures"
            },
            {
                "id": "whitebit_futures",
                "name": "WhiteBIT Futures"
            },
            {
                "id": "bingx_futures",
                "name": "BingX (Futures)"
            },
            {
                "id": "huobi_dm",
                "name": "HTX Futures"
            },
            {
                "id": "deribit",
                "name": "Deribit"
            },
            {
                "id": "coinup-futures",
                "name": "CoinUp.io (Futures)"
            },
            {
                "id": "phemex_futures",
                "name": "Phemex (Futures)"
            },
            {
                "id": "bitunix_futures",
                "name": "Bitunix Futures"
            },
            {
                "id": "lbank-futures",
                "name": "LBank (Futures)"
            },
            {
                "id": "aivora-exchange-futures",
                "name": "Aivora Exchange (Futures)"
            },
            {
                "id": "aster",
                "name": "Aster (Futures)"
            },
            {
                "id": "prime_xbt",
             
…