/v1/tickers
All spot markets for a quote by 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/bingx-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bingx-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bingx-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/bingx-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 50,
"quote": "USDT",
"source": "BingX",
"tickers": [
{
"ask": 62714.01,
"bid": 62714,
"base": "BTC",
"last": 62714,
"quote": "USDT",
"market": "BTC-USDT",
"spread": 0.01,
"low_24h": 60782.15,
"high_24h": 62989.75,
"open_24h": 61719.71,
"timestamp": 1781164138630,
"change_24h": 994.29,
"change_24h_pct": 1.61,
"base_volume_24h": 3225.05,
"quote_volume_24h": 199677979.2
},
{
"ask": 1653.92,
"bid": 1653.91,
"base": "ETH",
"last": 1653.91,
"quote": "USDT",
"market": "ETH-USDT",
"spread": 0.01,
"low_24h": 1604.62,
"high_24h": 1667.74,
"open_24h": 1640.09,
"timestamp": 1781164138630,
"change_24h": 13.82,
"change_24h_pct": 0.84,
"base_volume_24h": 61262.93,
"quote_volume_24h": 100225535.64
},
{
"ask": 1.00094,
"bid": 1.00093,
"base": "USDC",
"last": 1.00093,
"quote": "USDT",
"market": "USDC-USDT",
"spread": 1.0e-5,
"low_24h": 1.00034,
"high_24h": 1.00109,
"open_24h": 1.00047,
"timestamp": 1781164138630,
"change_24h": 0.00046,
"change_24h_pct": 0.05,
"base_volume_24h": 48898600.35,
"quote_volume_24h": 48930384.58
},
{
"ask": 7.32e-5,
"bid": 7.1e-5,
"base": "BENZ",
"last": 7.32e-5,
"quote": "USDT",
"market": "BENZ-USDT",
"spread": 2.2e-6,
"low_24h": 1.5e-5,
"high_24h": 7.26e-5,
"open_24h": 1.5e-5,
"timestamp": 1781164138631,
"change_24h": 5.82e-5,
"change_24h_pct": 388,
"base_volume_24h": 551783351413.21,
"quote_volume_24h": 21727287.59
},
{
"ask": 0.000523,
"bid": 0.0003951,
"base": "FAST",
"last": 0.000523,
"quote": "USDT",
"market": "FAST-USDT",
"spread": 0.0001279,
"low_24h": 0.0003,
"high_24h": 0.00068,
"open_24h": 0.0003111,
"timestamp": 1781164138631,
"change_24h": 0.0002119,
"change_24h_pct": 68.11,
"base_volume_24h": 3060509
…