/v1/quote
Live quote for one or more Iceland 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/iceland-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/iceland-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/iceland-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/iceland-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": "OMXICE",
"quotes": [
{
"low": 141,
"high": 142.8,
"last": 142,
"name": "Islandsbanki hf",
"open": 141,
"pe_ttm": 9.3974,
"sector": "Finance",
"symbol": "ISB",
"ticker": "OMXICE:ISB",
"volume": 1110625,
"currency": "ISK",
"change_abs": 1,
"change_pct": 0.7092,
"market_cap": 247197733521
},
{
"low": 192,
"high": 193,
"last": 192,
"name": "Arion Banki hf",
"open": 192.5,
"pe_ttm": 8.6855,
"sector": "Finance",
"symbol": "ARION",
"ticker": "OMXICE:ARION",
"volume": 490207,
"currency": "ISK",
"change_abs": 1.5,
"change_pct": 0.7874,
"market_cap": 243649500000
},
{
"low": 122,
"high": 124,
"last": 123,
"name": "Hagar hf.",
"open": 122,
"pe_ttm": 20.7078,
"sector": "Retail Trade",
"symbol": "HAGA",
"ticker": "OMXICE:HAGA",
"volume": 360000,
"currency": "ISK",
"change_abs": 1,
"change_pct": 0.8197,
"market_cap": 134984317627.00002
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:09.193Z",
"request_id": "33251741-90ad-43d2-9b46-138ce41b860c"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}