Μετάβαση στο περιεχόμενο
GET /v1/meta

Endpoints & source

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/taiwanrealtime-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}