Naar de inhoud
GET /v1/exchanges

List the compared exchanges

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 5,
        "exchanges": [
            {
                "id": "binance",
                "name": "Binance",
                "quote": "USDT"
            },
            {
                "id": "okx",
                "name": "OKX",
                "quote": "USDT"
            },
            {
                "id": "bybit",
                "name": "Bybit",
                "quote": "USDT"
            },
            {
                "id": "kucoin",
                "name": "KuCoin",
                "quote": "USDT"
            },
            {
                "id": "coinbase",
                "name": "Coinbase",
                "quote": "USD"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:36.580Z",
        "request_id": "3cba99f0-c0ae-4f50-b1b3-0f36ec7bc7b4"
    },
    "status": "ok",
    "message": "Exchanges retrieved successfully",
    "success": true
}