/v1/ticker
Ticker for one market
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/coinmate-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinmate-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinmate-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/coinmate-api/v1/ticker",
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": 1317693,
"bid": 1316631,
"base": "BTC",
"last": 1317729,
"quote": "CZK",
"market": "BTC_CZK",
"source": "CoinMate",
"spread": 1062,
"low_24h": 1284730,
"high_24h": 1327824,
"open_24h": 1300513,
"change_24h": 17216,
"change_24h_pct": 1.32378531,
"base_volume_24h": 11.66274556,
"quote_volume_24h": 15368338.04
},
"meta": {
"timestamp": "2026-06-11T16:47:41.652Z",
"request_id": "46b69271-eecb-416d-a857-59369e34f751"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}