Ir al contenido
GET /v1/exchange

One exchange full profile

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cryptoexchanges-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}