/v1/ticker
24h ticker for an instrument
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/blofin-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blofin-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blofin-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/blofin-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"ask": 65917.9,
"bid": 65917.8,
"last": 65911.1,
"inst_id": "BTC-USDT",
"low_24h": 63650.9,
"ask_size": 4834,
"bid_size": 8426,
"high_24h": 65994.4,
"open_24h": 64513.9,
"timestamp": "1781522135914",
"volume_24h": 3836979.3,
"volume_currency_24h": 3836.9793
},
"meta": {
"timestamp": "2026-06-15T11:15:37.645Z",
"request_id": "416a9942-691a-4def-8ffc-024ab5f43ef3"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}