/v1/meta
Service metadata and endpoint list
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/indodax-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/indodax-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/indodax-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/indodax-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "Indodax API (indodax.com/api, live)",
"service": "indodax-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pairs": "List trading pairs (quote=idr optional).",
"GET /v1/ticker": "Ticker for one pair (pair=btcidr or symbol=btc"e=idr).",
"GET /v1/trades": "Most recent executed trades for a pair (pair=btcidr, limit=20).",
"GET /v1/tickers": "All pairs for a quote with name and 24h change, ranked by volume (quote=idr, limit=50)."
},
"pair_count": 521,
"description": "Live spot market data from Indodax, Indonesia's largest crypto exchange and the biggest in South-East Asia. The ticker endpoint returns a pair's last price, buy/sell, 24h high/low and base/quote volume (in Indonesian rupiah, USDT or Bitcoin); the tickers endpoint returns every pair for a quote currency with its name and 24h change, ranked by quote volume; the pairs endpoint lists 500+ trading pairs; the trades endpoint returns the most recent executed trades. Live, no key, nothing stored. A distinct South-East-Asian venue with rupiah pricing, separate from other exchange feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:22.695Z",
"request_id": "c57357a0-1f19-4124-b9d3-9c735d9f3dea"
},
"status": "ok",
"message": "Meta",
"success": true
}