/v1/tickers
All markets for a quote ranked by 24h quote volume
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/toobit-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/toobit-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/toobit-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/toobit-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 50,
"quote": "USDT",
"source": "Toobit",
"tickers": [
{
"ask": null,
"bid": null,
"base": "BTC",
"last": 62719.72,
"quote": "USDT",
"market": "BTCUSDT",
"spread": null,
"low_24h": 60783.36,
"high_24h": 62996,
"open_24h": 61719.72,
"change_24h": 1000,
"change_24h_pct": 1.62,
"base_volume_24h": 6762.20864,
"quote_volume_24h": 419186331.12
},
{
"ask": null,
"bid": null,
"base": "ETH",
"last": 1654.08,
"quote": "USDT",
"market": "ETHUSDT",
"spread": null,
"low_24h": 1604.62,
"high_24h": 1667.54,
"open_24h": 1640.09,
"change_24h": 13.99,
"change_24h_pct": 0.85,
"base_volume_24h": 111019.9247,
"quote_volume_24h": 181786172.64
},
{
"ask": null,
"bid": null,
"base": "SOL",
"last": 64.98,
"quote": "USDT",
"market": "SOLUSDT",
"spread": null,
"low_24h": 62.35,
"high_24h": 65.79,
"open_24h": 64.61,
"change_24h": 0.37,
"change_24h_pct": 0.57,
"base_volume_24h": 1197727.084,
"quote_volume_24h": 76912380.23
},
{
"ask": null,
"bid": null,
"base": "ZEC",
"last": 424.19,
"quote": "USDT",
"market": "ZECUSDT",
"spread": null,
"low_24h": 401.6,
"high_24h": 448.51,
"open_24h": 435.35,
"change_24h": -11.16,
"change_24h_pct": -2.56,
"base_volume_24h": 125110.858,
"quote_volume_24h": 52873951.59
},
{
"ask": null,
"bid": null,
"base": "XRP",
"last": 1.1146,
"quote": "USDT",
"market": "XRPUSDT",
"spread": null,
"low_24h": 1.0892,
"high_24h": 1.1375,
"open_24h": 1.1187,
"change_24h": -0.0041,
"change_24h_pct": -0.37,
"base_volume_24h": 42235453,
"quote_volume_24h": 46952246.23
},
{
"ask": null,
"bid": null,
"base": "WLD",
"last": 0.5079,
"quote": "USDT",
"market": "WLDUSDT",
"spr
…