Vai al contenuto
GET /v1/ticker

Ticker for one market

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/wazirx-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/wazirx-api/v1/ticker" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wazirx-api/v1/ticker", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wazirx-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/wazirx-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": 6290000,
        "bid": 6273734,
        "base": "BTC",
        "last": 6269931,
        "quote": "INR",
        "market": "BTC_INR",
        "source": "WazirX",
        "spread": 16266,
        "low_24h": 6160998,
        "high_24h": 6404609,
        "open_24h": 6201003,
        "change_24h": 68928,
        "change_24h_pct": 1.1116,
        "base_volume_24h": 0.23919,
        "quote_volume_24h": 1499704.8
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:36.088Z",
        "request_id": "40d45441-e93e-4ef4-8c1a-2f6778abaaf9"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}