/v1/screener
Rank local primary listings
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/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/iceland-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/iceland-stock-api/v1/screener");
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/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sort": "market_cap",
"count": 24,
"order": "desc",
"market": "OMXICE",
"results": [
{
"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": 119,
"high": 119,
"last": 119,
"name": "Sildarvinnslan hf.",
"open": 119,
"pe_ttm": 18.2756,
"sector": "Consumer Non-Durables",
"symbol": "SVN",
"ticker": "OMXICE:SVN",
"volume": 126000,
"currency": "ISK",
"change_abs": 0,
"change_pct": 0,
"market_cap": 219653982666
},
{
"low": 90,
"high": 90.5,
"last": 90,
"name": "Brim hf.",
"open": 90,
"pe_ttm": 15.7365,
"sector": "Process Industries",
"symbol": "BRIM",
"ticker": "OMXICE:BRIM",
"volume": 45649,
"currency": "ISK",
"change_abs": 0,
"change_pct": 0,
"market_cap": 172888165283
},
{
"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
},
{
"low": 150,
"high": 153,
"last": 151.5,
"name": "Isfelag hf.",
"open": 150,
"pe_ttm": 20.9639,
"sector": "Consumer Non-Durables",
…