/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/digifinex-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digifinex-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digifinex-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/digifinex-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": 62714,
"bid": 62713.99,
"base": "BTC",
"last": 62714,
"quote": "USDT",
"market": "BTC_USDT",
"source": "DigiFinex",
"spread": 0.01,
"low_24h": 60780,
"high_24h": 62999.69,
"timestamp": 1781164143,
"change_24h_pct": 1.61,
"base_volume_24h": 8150.8145361,
"quote_volume_24h": 504748352.2
},
"meta": {
"timestamp": "2026-06-11T07:49:03.194Z",
"request_id": "ab9776fa-3742-4de8-b198-c864f8a4b536"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}