/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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}