/v1/tickers
All markets for a quote ranked by 24h turnover
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/btse-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btse-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btse-api/v1/tickers");
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/btse-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 50,
"quote": "USD",
"source": "BTSE",
"tickers": [
{
"ask": 62588.9,
"bid": 62588.7,
"base": "BTC",
"last": 62589.1,
"quote": "USD",
"active": true,
"market": "BTC-USD",
"spread": 0.2,
"low_24h": 61069.8,
"high_24h": 63233,
"change_24h_pct": 0.62701871,
"base_volume_24h": 2323.19236999,
"quote_volume_24h": 144843981.35
},
{
"ask": 1.1077,
"bid": 1.1073,
"base": "XRP",
"last": 1.1076,
"quote": "USD",
"active": true,
"market": "XRP-USD",
"spread": 0.0004,
"low_24h": 1.0889,
"high_24h": 1.1291,
"change_24h_pct": -0.52092689,
"base_volume_24h": 31888764.68,
"quote_volume_24h": 35384883.33
},
{
"ask": 1640.13,
"bid": 1639.73,
"base": "ETH",
"last": 1639.74,
"quote": "USD",
"active": true,
"market": "ETH-USD",
"spread": 0.4,
"low_24h": 1603.74,
"high_24h": 1672.31,
"change_24h_pct": -0.09200304,
"base_volume_24h": 19907.74489999,
"quote_volume_24h": 32685141.89
},
{
"ask": 65.47,
"bid": 65.41,
"base": "SOL",
"last": 65.45,
"quote": "USD",
"active": true,
"market": "SOL-USD",
"spread": 0.06,
"low_24h": 62.32,
"high_24h": 66.08,
"change_24h_pct": 1.3471663,
"base_volume_24h": 185801.96199999,
"quote_volume_24h": 11994570.11
},
{
"ask": 0.6285,
"bid": 0.6278,
"base": "ASTER",
"last": 0.6278,
"quote": "USD",
"active": true,
"market": "ASTER-USD",
"spread": 0.0007,
"low_24h": 0.5911,
"high_24h": 0.6358,
"change_24h_pct": 1.14386982,
"base_volume_24h": 9613150.31,
"quote_volume_24h": 5954026.79
},
{
"ask": 42.19,
"bid": 42.17,
"base": "LTC",
"last": 42.16,
"quote": "USD",
"active": true,
"market": "LTC-USD",
"spread": 0.02,
"low_24h": 41.15,
"high_24h": 42.89,
"change_24h_pct": -0
…