/v1/tickers
All pairs in one call
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/gateio-api/v1/tickers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gateio-api/v1/tickers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gateio-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/gateio-api/v1/tickers",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sort": "change",
"count": 2208,
"source": "Gate.io",
"tickers": [
{
"ask": 0.0013184,
"bid": 0.0012911,
"last": 0.0013217,
"pair": "TRU_USDT",
"spread": 2.73e-5,
"low_24h": 0.0006405,
"high_24h": 0.0014786,
"base_volume": 72928027,
"quote_volume": 77581.6913973,
"change_24h_pct": 100.95
},
{
"ask": 6.7999e-6,
"bid": 7.9e-8,
"last": 7.699e-7,
"pair": "TRU_ETH",
"spread": 6.7209e-6,
"low_24h": 3.751e-7,
"high_24h": 2.5e-5,
"base_volume": 1196359.2,
"quote_volume": 0.5246342301115,
"change_24h_pct": 95.8
},
{
"ask": 0.003123,
"bid": 0.00308,
"last": 0.003101,
"pair": "LAB3S_USDT",
"spread": 4.3e-5,
"low_24h": 0.00181,
"high_24h": 0.003255,
"base_volume": 28970568.59,
"quote_volume": 65340.91713503,
"change_24h_pct": 69.63
},
{
"ask": 0.06265,
"bid": 0.06179,
"last": 0.06149,
"pair": "SKYAI3S_USDT",
"spread": 0.00086,
"low_24h": 0.03773,
"high_24h": 0.06868,
"base_volume": 347757.22,
"quote_volume": 17556.9527985,
"change_24h_pct": 62.67
},
{
"ask": 0.012678,
"bid": 0.012623,
"last": 0.012633,
"pair": "WOD_USDT",
"spread": 5.5e-5,
"low_24h": 0.007951,
"high_24h": 0.019357,
"base_volume": 46331883,
"quote_volume": 590740.242788,
"change_24h_pct": 58.58
},
{
"ask": 0.0002558,
"bid": 0.0002551,
"last": 0.0002551,
"pair": "GXE_USDT",
"spread": 7.0e-7,
"low_24h": 0.0001401,
"high_24h": 0.0002884,
"base_volume": 12660001,
"quote_volume": 2558.5680364,
"change_24h_pct": 53.12
},
{
"ask": 0.0026777,
"bid": 0.0026723,
"last": 0.0026723,
"pair": "ZEUM_USDT",
"spread": 5.4e-6,
"low_24h": 0.0016599,
"high_24h": 0.0028282,
"base_volume": 1938218,
"quote_volume": 4366.1300039,
"change_24h_pct": 49.89
},
{
"ask": 0.0017193,
…