Naar de inhoud
GET /v1/quote

Live quote for one or more Paris stocks

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/france-stock-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 3,
        "market": "EPA",
        "quotes": [
            {
                "low": 501.1,
                "high": 521.2,
                "last": 510.6,
                "name": "LVMH Moet Hennessy Louis Vuitton SE",
                "open": 508,
                "pe_ttm": 23.3575,
                "sector": "Consumer Non-Durables",
                "symbol": "MC",
                "ticker": "EURONEXT:MC",
                "volume": 930219,
                "currency": "EUR",
                "change_abs": 17.4,
                "change_pct": 3.528,
                "market_cap": 252856203608
            },
            {
                "low": 386.3,
                "high": 394.25,
                "last": 390.25,
                "name": "L'Oreal S.A.",
                "open": 388.2,
                "pe_ttm": 34.0982,
                "sector": "Consumer Non-Durables",
                "symbol": "OR",
                "ticker": "EURONEXT:OR",
                "volume": 472567,
                "currency": "EUR",
                "change_abs": 6.95,
                "change_pct": 1.8132,
                "market_cap": 207780137711
            },
            {
                "low": 74.48,
                "high": 76.51,
                "last": 76.38,
                "name": "TotalEnergies SE",
                "open": 75.79,
                "pe_ttm": 12.859,
                "sector": "Energy Minerals",
                "symbol": "TTE",
                "ticker": "EURONEXT:TTE",
                "volume": 5078966,
                "currency": "EUR",
                "change_abs": -1.62,
                "change_pct": -2.0769,
                "market_cap": 170070692937
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:09:55.521Z",
        "request_id": "1d6c0726-0dc0-48c6-8dbe-b215b570ccce"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}