/v1/ticker
A pair ticker
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/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gateio-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gateio-api/v1/ticker");
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/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 62011.4,
"bid": 62011.3,
"last": 62011.3,
"pair": "BTC_USDT",
"source": "Gate.io",
"spread": 0.1,
"low_24h": 60773.7,
"high_24h": 63844.9,
"base_volume": 27510.5769287432,
"quote_volume": 1706107957.5514176,
"change_24h_pct": -1.98
},
"meta": {
"timestamp": "2026-06-09T20:24:44.798Z",
"request_id": "955a4dec-f6fd-4ed4-942b-dcbdbed6f58f"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}