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

One exchange full profile

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

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

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

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

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

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

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

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

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

{
    "data": {
        "id": "binance",
        "name": "Binance",
        "fiats": [
            "EUR",
            "JPY",
            "PLN",
            "TRY",
            "UAH",
            "MXN",
            "BRL",
            "ZAR",
            "COP",
            "ARS"
        ],
        "active": true,
        "source": "CoinPaprika",
        "markets": 1319,
        "twitter": "https://twitter.com/binance",
        "website": "https://www.binance.com",
        "api_status": true,
        "currencies": 428,
        "description": "CEO Changpeng Zhao had previously founded Fusion Systems in 2005 in Shanghai; the company built high-frequency trading systems for brokers.  In 2013 he joined Blockchain.info as the third member of the portfolio team. Source: CoinPaprika.com",
        "last_updated": "2026-06-10T22:56:17Z",
        "adjusted_rank": 1,
        "reported_rank": 3,
        "volume_7d_usd": 8787881161.12,
        "volume_24h_usd": 7387244001.49,
        "volume_30d_usd": 130609663705.21,
        "website_status": true,
        "confidence_score": 0.656227,
        "reported_volume_24h_usd": 7387244001.49
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:18.396Z",
        "request_id": "bacc49fb-f8b5-40ac-9773-9da3b738118b"
    },
    "status": "ok",
    "message": "Exchange retrieved successfully",
    "success": true
}