/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/latvia-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/latvia-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/latvia-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/latvia-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": 11,
"order": "desc",
"market": "OMXRSE",
"results": [
{
"low": 1.67,
"high": 1.675,
"last": 1.675,
"name": "Eleving Group",
"open": 1.67,
"pe_ttm": 8.5155,
"sector": "Technology Services",
"symbol": "ELEVR",
"ticker": "OMXRSE:ELEVR",
"volume": 2372,
"currency": "EUR",
"change_abs": 0.005,
"change_pct": 0.2994,
"market_cap": 194761389
},
{
"low": 8.58,
"high": 8.62,
"last": 8.58,
"name": "IPAS Indexo",
"open": 8.58,
"pe_ttm": null,
"sector": "Finance",
"symbol": "IDX1R",
"ticker": "OMXRSE:IDX1R",
"volume": 490,
"currency": "EUR",
"change_abs": -0.02,
"change_pct": -0.2326,
"market_cap": 88894176
},
{
"low": 1.52,
"high": 1.54,
"last": 1.53,
"name": "DelfinGroup AS",
"open": 1.525,
"pe_ttm": 6.5329,
"sector": "Finance",
"symbol": "DGR1R",
"ticker": "OMXRSE:DGR1R",
"volume": 2289,
"currency": "EUR",
"change_abs": 0.01,
"change_pct": 0.6579,
"market_cap": 69082348
},
{
"low": 4,
"high": 4.05,
"last": 4.01,
"name": "VIRSI-A AS",
"open": 4.04,
"pe_ttm": 10.8291,
"sector": "Utilities",
"symbol": "VIRSI",
"ticker": "OMXRSE:VIRSI",
"volume": 2470,
"currency": "EUR",
"change_abs": -0.07,
"change_pct": -1.7157,
"market_cap": 61789597
},
{
"low": 11.95,
"high": 11.95,
"last": 11.95,
"name": "MADARA Cosmetics AS",
"open": 11.95,
"pe_ttm": null,
"sector": "Consumer Non-Durables",
"symbol": "MDARA",
"ticker": "OMXRSE:MDARA",
"volume": 103,
"currency": "EUR",
"change_abs": -0.05,
"change_pct": -0.4167,
"market_cap": 45426407
},
{
"low": 10.9,
"high": 11,
"last": 10.9,
"name": "SAF Tehnika A/S",
"open": 11,
"pe_ttm": 6.4858,
"sector": "Elec
…