/v1/meta
Endpoints & source
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/hkex-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hkex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hkex-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/hkex-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"sample": {
"hang_seng": 24925.02
},
"source": "Tencent public stock quote feed (qt.gtimg.cn), keyless",
"indexes": [
"HSI",
"HSTECH",
"HSCEI"
],
"service": "hkex-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/index": "Live value of a Hong Kong index (name).",
"GET /v1/quote": "Live quote for one or more HKEX stocks (codes)."
},
"description": "Live data from the Hong Kong Stock Exchange (HKEX) with no key: the live quote for one or more HKEX-listed stocks by code (price, open/high/low, change, volume, turnover, P/E, market cap in HKD), and the live value of the major Hong Kong indices (Hang Seng, Hang Seng TECH, Hang Seng China Enterprises). The Hong-Kong-equities / Hang-Seng-index layer for trading dashboards and screeners. Distinct from other exchange readers — the HKEX market. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:51.895Z",
"request_id": "39abc6a0-662b-4e67-868b-d5d6c4c0c49a"
},
"status": "ok",
"message": "Meta",
"success": true
}