/v1/quote
Live quote for one or more Helsinki stocks
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/finland-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-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/finland-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": "OMXHEX",
"quotes": [
{
"low": 12.125,
"high": 12.965,
"last": 12.965,
"name": "Nokia Oyj",
"open": 12.45,
"pe_ttm": 93.9493,
"sector": "Electronic Technology",
"symbol": "NOKIA",
"ticker": "OMXHEX:NOKIA",
"volume": 22167109,
"currency": "EUR",
"change_abs": 1.185,
"change_pct": 10.0594,
"market_cap": 72364331938
},
{
"low": 16.09,
"high": 16.365,
"last": 16.35,
"name": "Nordea Bank Abp",
"open": 16.09,
"pe_ttm": 11.9561,
"sector": "Finance",
"symbol": "NDA_FI",
"ticker": "OMXHEX:NDA_FI",
"volume": 5448925,
"currency": "EUR",
"change_abs": 0.5,
"change_pct": 3.1546,
"market_cap": 55467376294
},
{
"low": 48.34,
"high": 49.55,
"last": 48.72,
"name": "KONE Oyj Class B",
"open": 49.14,
"pe_ttm": 25.7655,
"sector": "Producer Manufacturing",
"symbol": "KNEBV",
"ticker": "OMXHEX:KNEBV",
"volume": 759537,
"currency": "EUR",
"change_abs": 0.2,
"change_pct": 0.4122,
"market_cap": 25245286916
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:07.283Z",
"request_id": "333143f5-839b-4f18-981e-fbe9834b47d3"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}