Μετάβαση στο περιεχόμενο
GET /v1/exchanges

Crypto exchanges ranked by 24h volume

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/cryptoexchanges-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 50,
        "total": 1059,
        "source": "CoinPaprika",
        "exchanges": [
            {
                "id": "binance",
                "name": "Binance",
                "active": true,
                "markets": 1319,
                "currencies": 428,
                "adjusted_rank": 1,
                "volume_7d_usd": 8787881161.12,
                "volume_24h_usd": 7387244001.49,
                "confidence_score": 0.656227
            },
            {
                "id": "weex",
                "name": "WEEX",
                "active": true,
                "markets": 265,
                "currencies": 232,
                "adjusted_rank": 2,
                "volume_7d_usd": 7031995491.47,
                "volume_24h_usd": 6477347377.29,
                "confidence_score": 0.0167726
            },
            {
                "id": "xeggex",
                "name": "XeggeX",
                "active": true,
                "markets": 18,
                "currencies": 16,
                "adjusted_rank": 3,
                "volume_7d_usd": 34400206341.05,
                "volume_24h_usd": 4420223971.59,
                "confidence_score": 4.58256e-8
            },
            {
                "id": "coinbase",
                "name": "Coinbase",
                "active": true,
                "markets": 863,
                "currencies": 378,
                "adjusted_rank": 4,
                "volume_7d_usd": 15462232570.46,
                "volume_24h_usd": 2929452892.96,
                "confidence_score": 0.441586
            },
            {
                "id": "bybit-spot",
                "name": "Bybit (Spot)",
                "active": true,
                "markets": 510,
                "currencies": 417,
                "adjusted_rank": 6,
                "volume_7d_usd": 17530699052.96,
                "volume_24h_usd": 2362178109.32,
                "confidence_score": 4.72684e-5
            },
            {
                "id": "gateio",
                "name": "Gate",
                "active": true,
                "markets": 1736,
                "currencies": 1586,
                "adjusted_rank": 5,
                "volume_7d_usd": 5470516253.95,
                "volume_24h_usd": 2300246742.21,
                "confidence_score": 0.0499895
            },
            {
                "id": "pionex",
                "name": "Pionex",
                "active": true,
                "markets": 409,
                "currencies": 307,
                "adjusted_rank": 7,
                "volume_7d_usd": 14897661581.26,
                "volume_24h_usd": 2269511124.66,
                "confidence_score": 0.412526
            },
            {
                "id": "whitebit",
                "name": "WhiteBIT",
                "active": true,
                "markets": 671,
                "currencies": 272,
                "adjusted_rank": 9,
                "volume_7d_usd": 6595648
…