/v1/exchanges
List the compared exchanges
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}