/v1/tickers
24h tickers for all symbols or one symbol
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}