/v1/meta
Endpoints & source
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/taiwanrealtime-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/taiwanrealtime-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/taiwanrealtime-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/taiwanrealtime-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"tsmc": null
},
"source": "Taiwan Exchange real-time market info (mis.twse.com.tw), keyless",
"markets": [
"tse",
"otc"
],
"service": "taiwanrealtime-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/quote": "Live intraday quote (codes, market).",
"GET /v1/orderbook": "Five-level order book (code, market)."
},
"description": "Live intraday quotes and order-book depth for the Taiwan market (TWSE main board and TPEx OTC) with no key: the live intraday quote for one or more stocks (current price, open/high/low, previous close, change, cumulative volume), and the five-level order book (top five bids and asks with sizes). The Taiwan-equities / real-time / level-2-depth layer for trading dashboards and execution tools. Distinct from end-of-day readers — the live intraday tape with order-book depth across TSE and TPEx. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:46.565Z",
"request_id": "23ad77bf-f44e-4613-b747-eb6055fea45e"
},
"status": "ok",
"message": "Meta",
"success": true
}