/v1/meta
Service metadata & endpoint catalog
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/set-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/set-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/set-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/set-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"set_index": 1592.41
},
"source": "TradingView public screener (scanner.tradingview.com/thailand/scan), keyless",
"indexes": [
"SET"
],
"screens": [
"gainers",
"losers",
"active",
"marketcap"
],
"service": "set-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/index": "Live value of the SET Index (name).",
"GET /v1/quote": "Live quote for one or more stocks (codes).",
"GET /v1/screener": "Ranked market screener (by, limit)."
},
"description": "Live data for the Stock Exchange of Thailand (SET, the Bangkok market) with no key: the live quote for one or more stocks by ticker (price, change, open/high/low, volume, market cap, P/E, sector, in baht, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap), and the live value of the SET Index. The Thailand-equities / SET-index / screener layer for trading dashboards and research. Distinct from other exchange readers — the SET market with a built-in screener. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-15T02:10:42.582Z",
"request_id": "4cf433e7-a897-4bbd-aee3-5b6d672132cf"
},
"status": "ok",
"message": "Meta",
"success": true
}