Aller au contenu
GET /v1/exchanges

Ranked exchange list, or one exchange's pairs

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/coinlore-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 50,
        "exchanges": [
            {
                "id": "5",
                "url": "https://www.binance.com",
                "name": "Binance",
                "country": "Japan",
                "volume_usd": 5383844360.183821,
                "active_pairs": 966
            },
            {
                "id": "9",
                "url": "https://www.bitfinex.com",
                "name": "Bitfinex",
                "country": "Hong Kong",
                "volume_usd": 391424641.0659047,
                "active_pairs": 101
            },
            {
                "id": "10",
                "url": "https://bitflyer.com/",
                "name": "bitFlyer",
                "country": "Japan",
                "volume_usd": 22048886.73806642,
                "active_pairs": 3
            },
            {
                "id": "14",
                "url": "https://www.bitmex.com/",
                "name": "BitMEX",
                "country": "Seychelles",
                "volume_usd": 4611.9731,
                "active_pairs": 2
            },
            {
                "id": "15",
                "url": "https://bitso.com",
                "name": "Bitso",
                "country": "Mexico",
                "volume_usd": 1464764.7994675892,
                "active_pairs": 24
            },
            {
                "id": "16",
                "url": "https://www.bitstamp.net/",
                "name": "Bitstamp",
                "country": "Luxembourg, Luxembourg; Slovenia",
                "volume_usd": 179634876.26067194,
                "active_pairs": 151
            },
            {
                "id": "22",
                "url": "https://btcmarkets.net/",
                "name": "BTC Markets",
                "country": "Australia",
                "volume_usd": 1403207.610338942,
                "active_pairs": 9
            },
            {
                "id": "24",
                "url": "https://www.btcturk.com",
                "name": "BTCTurk",
                "country": "Turkey",
                "volume_usd": 83424962.73070705,
                "active_pairs": 304
            },
            {
                "id": "29",
                "url": "https://cex.io",
                "name": "CEX.IO",
                "country": "London, United Kingdom",
                "volume_usd": 293905.14047753485,
                "active_pairs": 521
            },
            {
                "id": "32",
                "url": "https://coincheck.com",
                "name": "coincheck",
                "country": "Tokyo, Japan",
                "volume_usd": 29525070.020739,
                "active_pairs": 1
            },
            {
                "id": "41",
                "url": "https://exmo.com/",
                "name": "EXMO",
                "country": "Spain, Russia",
                "volume_usd": 47858960.600566246,
                "active_pairs": 147
            },
          
…