/v1/ticker
Ticker for one market
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/bingx-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bingx-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bingx-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/bingx-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"ask": 62714.01,
"bid": 62714,
"base": "BTC",
"last": 62714,
"quote": "USDT",
"market": "BTC-USDT",
"source": "BingX",
"spread": 0.01,
"low_24h": 60782.15,
"high_24h": 62989.75,
"open_24h": 61719.71,
"timestamp": 1781164138339,
"change_24h": 994.29,
"change_24h_pct": 1.61,
"base_volume_24h": 3225.05,
"quote_volume_24h": 199677979.2
},
"meta": {
"timestamp": "2026-06-11T07:48:58.442Z",
"request_id": "d720fa73-476d-4998-9f93-92eee94ec09e"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}