/v1/tickers
All spot markets for a quote by 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/bitmart-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitmart-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitmart-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/bitmart-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": "BitMart",
"tickers": [
{
"ask": 62727.26,
"bid": 62727.23,
"base": "BTC",
"last": 62714.01,
"quote": "USDT",
"market": "BTC_USDT",
"spread": 0.03,
"low_24h": 60780.41,
"high_24h": 62996,
"open_24h": 61708.42,
"timestamp": 1781164154077,
"change_24h_pct": 1.63,
"base_volume_24h": 4320.88848,
"quote_volume_24h": 267486320.3
},
{
"ask": 1654.22,
"bid": 1654.2,
"base": "ETH",
"last": 1653.92,
"quote": "USDT",
"market": "ETH_USDT",
"spread": 0.02,
"low_24h": 1604.37,
"high_24h": 1667.59,
"open_24h": 1639.32,
"timestamp": 1781164154044,
"change_24h_pct": 0.891,
"base_volume_24h": 49654.71922,
"quote_volume_24h": 81168698.32
},
{
"ask": 64.988,
"bid": 64.9849,
"base": "SOL",
"last": 64.986,
"quote": "USDT",
"market": "SOL_USDT",
"spread": 0.0031,
"low_24h": 62.3497,
"high_24h": 65.765,
"open_24h": 64.5937,
"timestamp": 1781164153809,
"change_24h_pct": 0.607,
"base_volume_24h": 1254654.44,
"quote_volume_24h": 80504209.56
},
{
"ask": 1.0031,
"bid": 0.9988,
"base": "USDCX",
"last": 1.0007,
"quote": "USDT",
"market": "USDCX_USDT",
"spread": 0.0043,
"low_24h": 0.9985,
"high_24h": 1.0028,
"open_24h": 1.0005,
"timestamp": 1781164153997,
"change_24h_pct": 0.02,
"base_volume_24h": 56638491.2,
"quote_volume_24h": 56677646.04
},
{
"ask": 0.01714,
"bid": 0.01712,
"base": "SUN",
"last": 0.01713,
"quote": "USDT",
"market": "SUN_USDT",
"spread": 2.0e-5,
"low_24h": 0.01704,
"high_24h": 0.01727,
"open_24h": 0.0172,
"timestamp": 1781164154087,
"change_24h_pct": -0.407,
"base_volume_24h": 2451044406.8,
"quote_volume_24h": 42028771.83
},
{
"ask": 1.00095,
"bid": 1.00093,
"base": "USDC",
"last":
…