Skip to content
GET /v1/meta

Service metadata

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wazirx-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wazirx-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Markets are BASE_QUOTE (BTC_INR). The default quote is the Indian rupee (INR). WazirX reports base volume only; quote_volume_24h is derived as volume × last. change is derived from the day's open.",
        "source": "WazirX public API (api.wazirx.com/api/v2, live)",
        "service": "wazirx-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_INR, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_INR or base=BTC&quote=INR).",
            "GET /v1/markets": "Tradable pairs with base/quote (quote=INR optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=INR, limit=50)."
        },
        "description": "Live spot market data from WazirX, one of India's largest crypto exchanges. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low/open, 24h change and volume; the tickers endpoint ranks every market for a quote currency (INR or USDT) by 24h turnover; the markets endpoint lists tradable pairs with base/quote; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct Indian-rupee venue for INR price discovery, separate from the USD/USDT-quoted exchange feeds.",
        "market_count": 527,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:37.433Z",
        "request_id": "6af90ad6-3e69-43fa-9320-33b267a05e8f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}