/v1/tickers
All markets for a quote ranked by 24h turnover
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/quidax-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quidax-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quidax-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/quidax-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 9,
"quote": "NGN",
"source": "Quidax",
"tickers": [
{
"ask": 2296748,
"bid": 2285280,
"base": "ETH",
"last": 2288490,
"quote": "NGN",
"market": "ethngn",
"spread": 11468,
"low_24h": 2223622,
"high_24h": 2314872,
"open_24h": 2273531,
"change_24h": 14959,
"change_24h_pct": 0.658,
"base_volume_24h": 35.49029439,
"quote_volume_24h": 81219183.8
},
{
"ask": 1391.03,
"bid": 1387,
"base": "USDT",
"last": 1387,
"quote": "NGN",
"market": "usdtngn",
"spread": 4.03,
"low_24h": 1381.72,
"high_24h": 1394.83,
"open_24h": 1388.41,
"change_24h": -1.41,
"change_24h_pct": -0.1016,
"base_volume_24h": 49856.84842465,
"quote_volume_24h": 69151448.76
},
{
"ask": 87105893,
"bid": 86627766,
"base": "BTC",
"last": 86808440,
"quote": "NGN",
"market": "btcngn",
"spread": 478127,
"low_24h": 84204993,
"high_24h": 87560734,
"open_24h": 85407358,
"change_24h": 1401082,
"change_24h_pct": 1.6405,
"base_volume_24h": 0.57144386,
"quote_volume_24h": 49606150.03
},
{
"ask": 1546.13,
"bid": 1538.41,
"base": "XRP",
"last": 1544.41,
"quote": "NGN",
"market": "xrpngn",
"spread": 7.72,
"low_24h": 1507.58,
"high_24h": 1576.64,
"open_24h": 1547.4,
"change_24h": -2.99,
"change_24h_pct": -0.1932,
"base_volume_24h": 13464.44956049,
"quote_volume_24h": 20794630.55
},
{
"ask": 447.71,
"bid": 445.91,
"base": "TRX",
"last": 446.92,
"quote": "NGN",
"market": "trxngn",
"spread": 1.8,
"low_24h": 444.5,
"high_24h": 449.64,
"open_24h": 447.96,
"change_24h": -1.04,
"change_24h_pct": -0.2322,
"base_volume_24h": 4553.74013021,
"quote_volume_24h": 2035157.54
},
{
"ask": 59078,
"bid": 58841,
"base": "LTC",
"last": 58809,
"quote": "NGN",
…