Zum Inhalt springen
GET /v1/exchanges

List the compared exchanges

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptoarbitrage-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}