/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/independentreserve-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/independentreserve-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/independentreserve-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/independentreserve-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": "fiat is one of aud, usd, nzd, sgd; coin is case-insensitive (btc/xbt, eth, sol, xrp, …). BTC is reported as XBT upstream and accepted either way.",
"source": "Independent Reserve public API (api.independentreserve.com/Public, live)",
"service": "independentreserve-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Market summary for a pair (coin=btc, fiat=nzd).",
"GET /v1/trades": "Most recent executed trades (coin=eth, fiat=sgd, limit=20).",
"GET /v1/history": "Hourly trade-history summary / OHLC (coin=btc, fiat=nzd, hours=24).",
"GET /v1/markets": "Supported coins and fiat quote currencies.",
"GET /v1/orderbook": "Live limit-order book with depth and spread (coin=btc, fiat=nzd, limit=20)."
},
"description": "Live order-book exchange data from Independent Reserve, the regulated Australian/New Zealand crypto venue, over its public API. The regional venue view for the AUD, USD, NZD and SGD order books — Australasian/Singapore on-exchange price discovery. ticker = a pair's market summary (last, 24h high/low, day volume, live best bid/offer, spread); orderbook = the live limit-order book (top bids/asks, cumulative depth, spread); trades = the most recent executed trades; history = the hourly trade-history summary (per-hour OHLC, volume, trade count) for the last N hours; markets = the supported coins and the four fiat quote currencies. Live, no key, nothing stored.",
"coins_supported": 41,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:49.204Z",
"request_id": "c15e8c00-dea0-4d3d-8c54-fb91d2b6bcdb"
},
"status": "ok",
"message": "Meta",
"success": true
}