Naar de inhoud
GET /v1/quote

Live quote for one or more Copenhagen 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/denmark-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/denmark-stock-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/denmark-stock-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/denmark-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/denmark-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": "OMXCOP",
        "quotes": [
            {
                "low": 280.6,
                "high": 287.95,
                "last": 287.25,
                "name": "Novo Nordisk A/S Class B",
                "open": 282.6,
                "pe_ttm": 10.4768,
                "sector": "Health Technology",
                "symbol": "NOVO_B",
                "ticker": "OMXCOP:NOVO_B",
                "volume": 4029249,
                "currency": "DKK",
                "change_abs": 4.7,
                "change_pct": 1.6634,
                "market_cap": 1276538979803
            },
            {
                "low": 1579.5,
                "high": 1611,
                "last": 1611,
                "name": "DSV A/S",
                "open": 1588.5,
                "pe_ttm": 55.0034,
                "sector": "Transportation",
                "symbol": "DSV",
                "ticker": "OMXCOP:DSV",
                "volume": 305835,
                "currency": "DKK",
                "change_abs": 38,
                "change_pct": 2.4158,
                "market_cap": 378495620178
            },
            {
                "low": 155,
                "high": 160,
                "last": 156.3,
                "name": "Orsted",
                "open": 158.7,
                "pe_ttm": null,
                "sector": "Utilities",
                "symbol": "ORSTED",
                "ticker": "OMXCOP:ORSTED",
                "volume": 1121156,
                "currency": "DKK",
                "change_abs": -1.75,
                "change_pct": -1.1072,
                "market_cap": 206435156069
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:09.408Z",
        "request_id": "cbfc729e-ad50-4b92-97b7-0ca89035d62e"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}