/v1/tickers
24h tickers for all symbols or one symbol
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/weex-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/weex-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/weex-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/weex-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"last": 65920.1,
"symbol": "cmt_btcusdt",
"low_24h": 63650.8,
"best_ask": 65920.2,
"best_bid": 65920.1,
"high_24h": 65992.2,
"timestamp": "1781522114387",
"mark_price": 65927.3,
"index_price": 65952.667,
"funding_rate": null,
"change_pct_24h": 2.156,
"base_volume_24h": 47425.857,
"volume_24h_usdt": 3089294540.53364
},
"meta": {
"timestamp": "2026-06-15T11:15:14.681Z",
"request_id": "ac5f9a43-846b-461a-b1ed-4c7c31999804"
},
"status": "ok",
"message": "Tickers retrieved successfully",
"success": true
}