/v1/exchanges
Derivatives-exchange league table
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/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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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",
…