Zum Inhalt springen
GET /v1/quote

Live quote for one or more Brussels stocks

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/belgium-stock-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/belgium-stock-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/belgium-stock-api/v1/quote");
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/belgium-stock-api/v1/quote",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 3,
        "market": "EBR",
        "quotes": [
            {
                "low": 70.84,
                "high": 71.52,
                "last": 71.28,
                "name": "Anheuser-Busch InBev SA/NV",
                "open": 71.26,
                "pe_ttm": 23.6434,
                "sector": "Consumer Non-Durables",
                "symbol": "ABI",
                "ticker": "EURONEXT:ABI",
                "volume": 1656502,
                "currency": "EUR",
                "change_abs": 0.2,
                "change_pct": 0.2814,
                "market_cap": 141407693081
            },
            {
                "low": 112.9,
                "high": 115.5,
                "last": 114.6,
                "name": "KBC Group N.V.",
                "open": 113.2,
                "pe_ttm": 13.1593,
                "sector": "Finance",
                "symbol": "KBC",
                "ticker": "EURONEXT:KBC",
                "volume": 483123,
                "currency": "EUR",
                "change_abs": 3.75,
                "change_pct": 3.3829,
                "market_cap": 47864119065
            },
            {
                "low": 264.7,
                "high": 275.5,
                "last": 274.9,
                "name": "UCB S.A.",
                "open": 269.3,
                "pe_ttm": 34.2623,
                "sector": "Health Technology",
                "symbol": "UCB",
                "ticker": "EURONEXT:UCB",
                "volume": 169042,
                "currency": "EUR",
                "change_abs": 3.9,
                "change_pct": 1.4391,
                "market_cap": 52229958569
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:04.858Z",
        "request_id": "69419861-deac-4a4c-9e38-9a71574d1dea"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}