/v1/meta
Service metadata and endpoint list
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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"e=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
}