Skip to content
GET /v1/ticker

Ticker for one market

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/wazirx-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}