Zum Inhalt springen
GET /v1/market

Market summary

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/luxembourg-stock-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}