/v1/ticker
24-hour ticker statistics
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/binance-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/binance-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/binance-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/binance-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": {
"ticker": {
"symbol": "BTCUSDT",
"volume": 27038.75152,
"ask_price": 63026.54,
"bid_price": 63026.53,
"low_price": 61184,
"open_time": 1780795213003,
"close_time": 1780881613003,
"high_price": 64234.68,
"last_price": 63026.53,
"open_price": 61490,
"trade_count": 4928950,
"price_change": 1536.53,
"quote_volume": 1686876898.3102756,
"weighted_avg_price": 62387.38120222,
"price_change_percent": 2.499
}
},
"meta": {
"timestamp": "2026-06-08T01:20:13.964Z",
"request_id": "846bf6eb-6f0c-4c4a-8286-939ee3830d23"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}