/v1/quote
Live quote for one or more Oslo stocks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/norway-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/norway-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/norway-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/norway-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 3,
"market": "OSL",
"quotes": [
{
"low": 332.2,
"high": 350,
"last": 348.4,
"name": "Equinor ASA",
"open": 350,
"pe_ttm": 16.0961,
"sector": "Energy Minerals",
"symbol": "EQNR",
"ticker": "OSL:EQNR",
"volume": 5253329,
"currency": "NOK",
"change_abs": -16.8,
"change_pct": -4.6002,
"market_cap": 883162512848
},
{
"low": 284.9,
"high": 291,
"last": 291,
"name": "DNB Bank ASA",
"open": 285,
"pe_ttm": 10.415,
"sector": "Finance",
"symbol": "DNB",
"ticker": "OSL:DNB",
"volume": 1740922,
"currency": "NOK",
"change_abs": 7.7,
"change_pct": 2.718,
"market_cap": 429974026611
},
{
"low": 106.25,
"high": 112.35,
"last": 109.8,
"name": "Norsk Hydro ASA",
"open": 111.65,
"pe_ttm": 35.3123,
"sector": "Non-Energy Minerals",
"symbol": "NHY",
"ticker": "OSL:NHY",
"volume": 5327103,
"currency": "NOK",
"change_abs": -0.9,
"change_pct": -0.813,
"market_cap": 215055998922
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:12.102Z",
"request_id": "400533c7-66c2-4e15-a31e-63dbfa936fd0"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}