/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/bitvavo-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitvavo-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitvavo-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/bitvavo-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": 54276,
"bid": 54275,
"base": "BTC",
"last": 54291,
"quote": "EUR",
"market": "BTC-EUR",
"source": "Bitvavo",
"spread": 1,
"low_24h": 52553,
"high_24h": 54525,
"open_24h": 53369,
"timestamp": 1781164167057,
"volume_24h": 818.74314866,
"change_24h_pct": 1.7276,
"volume_quote_24h": 43860525.29
},
"meta": {
"timestamp": "2026-06-11T07:49:29.883Z",
"request_id": "a93ac654-b3a1-45c3-bf41-4993601412d7"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}