/v1/instruments
Active instruments with funding, OI & 24h volume
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/instruments" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitmex-api/v1/instruments", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitmex-api/v1/instruments");
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/instruments",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 136,
"venue": "bitmex",
"instruments": [
{
"type": "FFWCSX",
"state": "Open",
"symbol": "TONUSD",
"low_price": 1.6860000000000002,
"timestamp": "2026-06-15T11:15:37.889Z",
"high_price": 1.8192,
"last_price": 1.7845,
"mark_price": 1.779,
"open_value": 617615430,
"underlying": "TON",
"volume_24h": 2577,
"index_price": 1.779,
"funding_rate": 0.0001,
"turnover_24h": 29631.92882715105,
"open_interest": 34717,
"quote_currency": "USD"
},
{
"type": "FFWCSX",
"state": "Open",
"symbol": "TONUSDT",
"low_price": 1.6802000000000001,
"timestamp": "2026-06-15T11:15:37.889Z",
"high_price": 1.8181,
"last_price": 1.7764,
"mark_price": 1.7802,
"open_value": 404739151200,
"underlying": "TON",
"volume_24h": 150461,
"index_price": 1.7804,
"funding_rate": -0.001479,
"turnover_24h": 264820.27079999994,
"open_interest": 227356,
"quote_currency": "USDT"
},
{
"type": "FFSCSX",
"state": "Open",
"symbol": "USDJPY",
"low_price": 160.07,
"timestamp": "2026-06-15T11:15:37.889Z",
"high_price": 160.16,
"last_price": 160.08,
"mark_price": 160.14,
"open_value": 62443390200,
"underlying": "USD",
"volume_24h": 103,
"index_price": 160.14,
"funding_rate": 0,
"turnover_24h": 26410.52486872474,
"open_interest": 38993,
"quote_currency": "JPY"
},
{
"type": "FFWCSX",
"state": "Open",
"symbol": "SUIUSDT",
"low_price": 0.746,
"timestamp": "2026-06-15T11:15:37.889Z",
"high_price": 0.808,
"last_price": 0.806,
"mark_price": 0.8057,
"open_value": 905216680060,
"underlying": "SUI",
"volume_24h": 587339600,
"index_price": 0.8057,
"funding_rate": 0.0001,
"turnover_24h": 466982.6476899999,
"open_interest": 1123515800,
"quote_currency": "USDT"
},
{
"type": "FFWCSX",
"state": "Open",
"symbol": "XRPUSDT",
"low_price": 1.1261,
"timestamp": "2026-06-15T11:15:37.889Z",
…