/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/estonia-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/estonia-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/estonia-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/estonia-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": 25,
"order": "desc",
"market": "OMXTSE",
"results": [
{
"low": 3.39,
"high": 3.405,
"last": 3.39,
"name": "LHV Group AS",
"open": 3.4,
"pe_ttm": 10.7143,
"sector": "Finance",
"symbol": "LHV1T",
"ticker": "OMXTSE:LHV1T",
"volume": 67360,
"currency": "EUR",
"change_abs": -0.01,
"change_pct": -0.2941,
"market_cap": 1114711011
},
{
"low": 48.8,
"high": 49.1,
"last": 49,
"name": "Infortar AS",
"open": 49,
"pe_ttm": 11.275,
"sector": "Finance",
"symbol": "INF1T",
"ticker": "OMXTSE:INF1T",
"volume": 1147,
"currency": "EUR",
"change_abs": 0,
"change_pct": 0,
"market_cap": 990840715
},
{
"low": 27.45,
"high": 27.65,
"last": 27.45,
"name": "Merko Ehitus AS",
"open": 27.5,
"pe_ttm": 14.374,
"sector": "Industrial Services",
"symbol": "MRK1T",
"ticker": "OMXTSE:MRK1T",
"volume": 1152,
"currency": "EUR",
"change_abs": -0.05,
"change_pct": -0.1818,
"market_cap": 486750021
},
{
"low": 0.653,
"high": 0.656,
"last": 0.655,
"name": "Tallink Grupp AS",
"open": 0.654,
"pe_ttm": 17.2823,
"sector": "Transportation",
"symbol": "TAL1T",
"ticker": "OMXTSE:TAL1T",
"volume": 225132,
"currency": "EUR",
"change_abs": 0.001,
"change_pct": 0.1529,
"market_cap": 486294174
},
{
"low": 9.14,
"high": 9.17,
"last": 9.15,
"name": "TKM Grupp AS",
"open": 9.15,
"pe_ttm": 19.2469,
"sector": "Retail Trade",
"symbol": "TKM1T",
"ticker": "OMXTSE:TKM1T",
"volume": 8061,
"currency": "EUR",
"change_abs": 0,
"change_pct": 0,
"market_cap": 372672150
},
{
"low": 1.246,
"high": 1.256,
"last": 1.25,
"name": "Tallinna Sadam AS",
"open": 1.25,
"pe_ttm": 16.2549,
"sector": "Tra
…