/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/quidax-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quidax-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quidax-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/quidax-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": 87105893,
"bid": 86627766,
"base": "BTC",
"last": 86808440,
"quote": "NGN",
"market": "btcngn",
"source": "Quidax",
"spread": 478127,
"low_24h": 84204993,
"high_24h": 87560734,
"open_24h": 85407358,
"change_24h": 1401082,
"change_24h_pct": 1.6405,
"base_volume_24h": 0.57144386,
"quote_volume_24h": 49606150.03
},
"meta": {
"timestamp": "2026-06-11T07:45:07.305Z",
"request_id": "3de5304f-b2af-4c46-b860-04bc4e8728ab"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}