/v1/tickers
24h tickers for all symbols or one symbol
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/phemex-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phemex-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phemex-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/phemex-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": {
"ask": 65891.6,
"bid": 65891.5,
"low": 63650.9,
"high": 65997,
"last": 65890.2,
"mark": 65891.6,
"open": 64521.3,
"index": 65930.94954504,
"symbol": "BTCUSDT",
"timestamp": 1781522129699943700,
"volume_24h": 4187.3963,
"funding_rate": -0.00010794,
"turnover_24h": 272146079.05386,
"open_interest": 2308.9361234,
"change_pct_24h": 2.1216,
"pred_funding_rate": -0.00010794
},
"meta": {
"timestamp": "2026-06-15T11:15:30.187Z",
"request_id": "3fd7337a-9c9a-4fed-b794-a38797bfddd4"
},
"status": "ok",
"message": "Tickers retrieved successfully",
"success": true
}