Skip to content
GET /v1/meta

Service metadata and endpoint list

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/bitkub-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/bitkub-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitkub-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitkub-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/bitkub-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": "Symbols are QUOTE_BASE, uppercase (e.g. THB_BTC). quoteVolume is in the quote currency.",
        "source": "Bitkub API (api.bitkub.com, live)",
        "service": "bitkub-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one pair (sym=THB_BTC or symbol=BTC&quote=THB).",
            "GET /v1/symbols": "List trading pairs (quote=THB optional).",
            "GET /v1/tickers": "All pairs for a quote ranked by 24h volume (quote=THB, limit=50)."
        },
        "description": "Live spot market data from Bitkub, Thailand's largest crypto exchange. The ticker endpoint returns a pair's last price, best bid/ask, 24h change, high/low and base/quote volume (in Thai baht, USDT or Bitcoin); the tickers endpoint ranks every pair for a quote currency by 24h quote volume; the symbols endpoint lists trading pairs. Live, no key, nothing stored. A distinct South-East-Asian venue with baht pricing, separate from other exchange feeds.",
        "symbol_count": 438,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:09.596Z",
        "request_id": "98bd1fb3-ebd7-4b81-a0bc-583ce3dd8d1e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}