/v1/tickers
All pairs for a quote with name and 24h change
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/indodax-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/indodax-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/indodax-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/indodax-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": "idr",
"total": 507,
"source": "Indodax",
"tickers": [
{
"low": 17910,
"high": 18076,
"last": 18060,
"name": "Tether USDt",
"pair": "usdtidr",
"volume_base": 7704191.25682072,
"volume_quote": 138721597416,
"change_24h_pct": 0.4673
},
{
"low": 1100112000,
"high": 1132000000,
"last": 1110312000,
"name": "Bitcoin",
"pair": "btcidr",
"volume_base": 23.64785831,
"volume_quote": 26270311257,
"change_24h_pct": -0.1556
},
{
"low": 370.713,
"high": 443.228,
"last": 383.8,
"name": "Pippin",
"pair": "pippinidr",
"volume_base": 49544261,
"volume_quote": 20409546319,
"change_24h_pct": -7.7701
},
{
"low": 950800,
"high": 1060150,
"last": 964867,
"name": "Hyperliquid",
"pair": "hypeidr",
"volume_base": 16155.72490756,
"volume_quote": 16295292428,
"change_24h_pct": -7.0842
},
{
"low": 3020,
"high": 3790,
"last": 3200,
"name": "Humanity Protocol",
"pair": "humanityidr",
"volume_base": 3804920.96259534,
"volume_quote": 12789552313,
"change_24h_pct": -12.6399
},
{
"low": 29010000,
"high": 30000000,
"last": 29274000,
"name": "Ethereum",
"pair": "ethidr",
"volume_base": 335.40973935,
"volume_quote": 9853241126,
"change_24h_pct": -0.9508
},
{
"low": 80100,
"high": 147000,
"last": 133000,
"name": "Audiera",
"pair": "beatidr",
"volume_base": 72565.61112485,
"volume_quote": 8070063172,
"change_24h_pct": 59.1633
},
{
"low": 19667,
"high": 20524,
"last": 19787,
"name": "XRP",
"pair": "xrpidr",
"volume_base": 302264.58588628,
"volume_quote": 6078851808,
"change_24h_pct": -3.1947
},
{
"low": 1127404,
"high": 1184999,
"last": 1136562,
"name": "Solana",
"pair": "solidr",
"volume_base": 5105.35680192,
…