/v1/ticker
Single-instrument ticker
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/bitmex-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitmex-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitmex-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/bitmex-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"type": "FFWCSX",
"state": "Open",
"symbol": "XBTUSD",
"low_price": 63608,
"timestamp": "2026-06-15T11:15:40.500Z",
"high_price": 65955.8,
"last_price": 65898,
"mark_price": 65942.12,
"open_value": 169268587712,
"underlying": "XBT",
"volume_24h": 178521800,
"index_price": 65941.8,
"funding_rate": 5.1e-5,
"turnover_24h": 178521800,
"open_interest": 111619400,
"quote_currency": "USD"
},
"meta": {
"timestamp": "2026-06-15T11:15:40.646Z",
"request_id": "f9383a2a-3433-4bfc-8ca4-7880ea4a1738"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}