/v1/meta
Service metadata
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/luxembourg-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/luxembourg-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/luxembourg-stock-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/luxembourg-stock-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "Luxembourg Stock Exchange API",
"market": "Luxembourg Stock Exchange (LuxSE)",
"currency": "EUR",
"endpoints": [
{
"path": "/v1/quote",
"description": "Quotes for specific symbols (?symbols=MTL,RTLL)"
},
{
"path": "/v1/screener",
"description": "Ranked stocks (?sort=market_cap_basic|change|volume&order=desc&limit=)"
},
{
"path": "/v1/search",
"description": "Search listings by company name (?q=arcelor)"
},
{
"path": "/v1/market",
"description": "Market summary: advancers/decliners, total cap, top movers"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"namespace": "LUXSE",
"disclaimer": "Unofficial market data via the public TradingView screener. Not affiliated with the Luxembourg Stock Exchange or TradingView. Delayed/indicative data; not investment advice.",
"description": "Live equity quotes, a ranked screener, company search and a market summary for the Luxembourg Stock Exchange (LuxSE), priced in EUR."
},
"meta": {
"timestamp": "2026-06-15T11:15:17.629Z",
"request_id": "eadd0910-8b54-4fb4-9988-3126bd32451b"
},
"status": "ok",
"message": "Meta",
"success": true
}