/v1/exchanges
Per-exchange volume and pair counts for a coin
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/coinmarkets-api/v1/exchanges" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinmarkets-api/v1/exchanges", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinmarkets-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/coinmarkets-api/v1/exchanges",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"coin": "bitcoin",
"count": 56,
"source": "CoinGecko",
"exchanges": [
{
"pairs": 8,
"exchange": "Binance",
"volume_usd": 1864735818
},
{
"pairs": 4,
"exchange": "Bybit",
"volume_usd": 997288497
},
{
"pairs": 2,
"exchange": "Gate",
"volume_usd": 938497640
},
{
"pairs": 2,
"exchange": "Crypto.com Exchange",
"volume_usd": 723759449
},
{
"pairs": 5,
"exchange": "Bullish",
"volume_usd": 720208583
},
{
"pairs": 2,
"exchange": "MEXC",
"volume_usd": 660814675
},
{
"pairs": 2,
"exchange": "Biconomy.com",
"volume_usd": 650269408
},
{
"pairs": 4,
"exchange": "Coinbase Exchange",
"volume_usd": 586360434
},
{
"pairs": 5,
"exchange": "OKX",
"volume_usd": 561457526
},
{
"pairs": 2,
"exchange": "Tapbit",
"volume_usd": 511682063
},
{
"pairs": 2,
"exchange": "XT.COM",
"volume_usd": 509127242
},
{
"pairs": 2,
"exchange": "DigiFinex",
"volume_usd": 496168725
},
{
"pairs": 3,
"exchange": "P2B",
"volume_usd": 398306402
},
{
"pairs": 2,
"exchange": "BloFin",
"volume_usd": 346692234
},
{
"pairs": 3,
"exchange": "LBank",
"volume_usd": 338700660
},
{
"pairs": 1,
"exchange": "BigONE",
"volume_usd": 337022921
},
{
"pairs": 1,
"exchange": "Deepcoin",
"volume_usd": 307652382
},
{
"pairs": 3,
"exchange": "Bitget",
"volume_usd": 307300328
},
{
"pairs": 1,
"exchange": "Poloniex",
"volume_usd": 293240399
},
{
"pairs": 2,
"exchange": "KuCoin",
"volume_usd": 291460241
},
{
"pairs": 1,
"exchange": "Zoomex",
"volume_usd": 272000104
},
{
…