Vai al contenuto
GET /v1/meta

Service metadata and endpoint list

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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&quote=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
}