/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.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/max-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/max-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/max-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/max-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": {
"ask": 1986704.4,
"bid": 1986020.2,
"base": "BTC",
"last": 1985212.8,
"quote": "TWD",
"market": "btctwd",
"source": "MAX",
"spread": 684.2,
"low_24h": 1930460.8,
"high_24h": 1999547.2,
"open_24h": 1959306.6,
"change_24h": 25906.2,
"change_24h_pct": 1.3222,
"base_volume_24h": 19.4912,
"quote_volume_24h": 38694179.73
},
"meta": {
"timestamp": "2026-06-11T07:45:09.044Z",
"request_id": "cd56cee3-ff38-47fc-a709-7e7612237432"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}