Ir al contenido
GET /v1/ticker

Ticker for one market

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/coinex-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "base": "BTC",
        "last": 62712,
        "quote": "USDT",
        "market": "BTCUSDT",
        "source": "CoinEx",
        "low_24h": 60741,
        "high_24h": 63000,
        "open_24h": 61675,
        "change_24h_pct": 1.6814,
        "base_volume_24h": 425.2289625,
        "quote_volume_24h": 26339728.93
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:16.588Z",
        "request_id": "518810b4-bf2c-4906-92dc-2609e3c7c937"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}