/v1/tickers
All instruments of a type
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/okx-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/okx-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/okx-api/v1/tickers");
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/okx-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sort": "change",
"count": 364,
"source": "OKX",
"tickers": [
{
"ask": 0.03435,
"bid": 0.03433,
"inst": "HOME-USDT-SWAP",
"last": 0.03433,
"time": "2026-06-09T20:24:48.097Z",
"type": "SWAP",
"low_24h": 0.02461,
"high_24h": 0.03676,
"open_24h": 0.02847,
"volume_24h": 9380001,
"change_24h_pct": 20.5831,
"volume_24h_ccy": 938000100
},
{
"ask": 0.01664,
"bid": 0.01663,
"inst": "SENT-USDT-SWAP",
"last": 0.01662,
"time": "2026-06-09T20:24:48.096Z",
"type": "SWAP",
"low_24h": 0.01344,
"high_24h": 0.01781,
"open_24h": 0.01382,
"volume_24h": 26470485,
"change_24h_pct": 20.2605,
"volume_24h_ccy": 2647048500
},
{
"ask": 1.6499,
"bid": 1.6498,
"inst": "LIT-USDT-SWAP",
"last": 1.6498,
"time": "2026-06-09T20:24:48.085Z",
"type": "SWAP",
"low_24h": 1.4506,
"high_24h": 1.687,
"open_24h": 1.4569,
"volume_24h": 26899999,
"change_24h_pct": 13.2404,
"volume_24h_ccy": 26899999
},
{
"ask": 0.02504,
"bid": 0.02503,
"inst": "AI-USDT-SWAP",
"last": 0.02504,
"time": "2026-06-09T20:24:48.094Z",
"type": "SWAP",
"low_24h": 0.02173,
"high_24h": 0.02522,
"open_24h": 0.02239,
"volume_24h": 4089296,
"change_24h_pct": 11.8356,
"volume_24h_ccy": 408929600
},
{
"ask": 0.2139,
"bid": 0.2138,
"inst": "SLX-USDT-SWAP",
"last": 0.2139,
"time": "2026-06-09T20:24:48.089Z",
"type": "SWAP",
"low_24h": 0.1845,
"high_24h": 0.2662,
"open_24h": 0.1913,
"volume_24h": 50930549,
"change_24h_pct": 11.8139,
"volume_24h_ccy": 509305490
},
{
"ask": 0.00586,
"bid": 0.005858,
"inst": "KAT-USDT-SWAP",
"last": 0.005858,
"time": "2026-06-09T20:24:48.109Z",
"type": "SWAP",
"low_24h": 0.005063,
"high_24h": 0.006623,
"open_24h": 0.005272,
"volume_24h": 25421309,
"change_24h_pct": 11.1153,
"volume_24h_cc
…