/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/ascendex-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ascendex-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ascendex-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/ascendex-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": "AscendEX",
"tickers": [
{
"ask": 62800,
"bid": 62459.26,
"base": "BTC",
"last": 62765.5,
"quote": "USDT",
"market": "BTC/USDT",
"spread": 340.74,
"low_24h": 60620.73,
"high_24h": 63027.25,
"open_24h": 61800.93,
"change_24h_pct": 1.5608,
"base_volume_24h": 9280.78137,
"quote_volume_24h_approx": 582512883.08
},
{
"ask": 1664.14,
"bid": 1644.25,
"base": "ETH",
"last": 1646.09,
"quote": "USDT",
"market": "ETH/USDT",
"spread": 19.89,
"low_24h": 1614,
"high_24h": 1702,
"open_24h": 1645.74,
"change_24h_pct": 0.0213,
"base_volume_24h": 290725.224,
"quote_volume_24h_approx": 478559883.97
},
{
"ask": 1.11783,
"bid": 1.11106,
"base": "XRP",
"last": 1.11406,
"quote": "USDT",
"market": "XRP/USDT",
"spread": 0.00677,
"low_24h": 1.08692,
"high_24h": 1.1396,
"open_24h": 1.12077,
"change_24h_pct": -0.5987,
"base_volume_24h": 64856201,
"quote_volume_24h_approx": 72253699.29
},
{
"ask": 1.00134,
"bid": 1.00053,
"base": "RUSD",
"last": 1.00066,
"quote": "USDT",
"market": "RUSD/USDT",
"spread": 0.00081,
"low_24h": 1.00006,
"high_24h": 1.00155,
"open_24h": 1.00063,
"change_24h_pct": 0.003,
"base_volume_24h": 69743455,
"quote_volume_24h_approx": 69789485.68
},
{
"ask": 1.1567,
"bid": 1.1548,
"base": "REUR",
"last": 1.1564,
"quote": "USDT",
"market": "REUR/USDT",
"spread": 0.0019,
"low_24h": 1.1526,
"high_24h": 1.1587,
"open_24h": 1.1563,
"change_24h_pct": 0.0086,
"base_volume_24h": 30435874,
"quote_volume_24h_approx": 35196044.69
},
{
"ask": 0.16658,
"bid": 0.16632,
"base": "ADA",
"last": 0.16636,
"quote": "USDT",
"market": "ADA/USDT",
"spread": 0.00026,
"low_24h": 0.15839,
"high_24h": 0.167
…