/v1/market
Market summary
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/luxembourg-stock-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/luxembourg-stock-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/luxembourg-stock-api/v1/market");
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/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"market": "Luxembourg Stock Exchange",
"currency": "EUR",
"listings": 21,
"advancers": 13,
"decliners": 4,
"top_loser": {
"symbol": "LUXSE:SCFNS",
"company": "Socfinasia S.A.",
"change_percent": -7.086614173228336
},
"unchanged": 4,
"top_gainer": {
"symbol": "LUXSE:FTXHG",
"company": "Fotex Holding SE",
"change_percent": 9.374999999999995
},
"most_active": {
"symbol": "LUXSE:FTXHG",
"volume": 22709,
"company": "Fotex Holding SE"
},
"total_market_cap": 144332862860.68378
},
"meta": {
"timestamp": "2026-06-15T11:15:17.548Z",
"request_id": "45df9d54-ec75-45b3-8bec-a0e13ec6f550"
},
"status": "ok",
"message": "Market summary retrieved successfully",
"success": true
}