Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/lithuania-stock-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/lithuania-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lithuania-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lithuania-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/lithuania-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": "OMXVSE",
        "results": [
            {
                "low": 21.1,
                "high": 21.15,
                "last": 21.15,
                "name": "Ignitis Grupe AB",
                "open": 21.15,
                "pe_ttm": 10.0199,
                "sector": "Utilities",
                "symbol": "IGN1L",
                "ticker": "OMXVSE:IGN1L",
                "volume": 10844,
                "currency": "EUR",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 1531026514
            },
            {
                "low": 2.12,
                "high": 2.13,
                "last": 2.12,
                "name": "Telia Lietuva AB",
                "open": 2.12,
                "pe_ttm": 13.367,
                "sector": "Communications",
                "symbol": "TEL1L",
                "ticker": "OMXVSE:TEL1L",
                "volume": 16082,
                "currency": "EUR",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 1235139701
            },
            {
                "low": 0.882,
                "high": 0.885,
                "last": 0.883,
                "name": "AB Artea Bankas",
                "open": 0.884,
                "pe_ttm": 9.822,
                "sector": "Finance",
                "symbol": "ROE1L",
                "ticker": "OMXVSE:ROE1L",
                "volume": 129675,
                "currency": "EUR",
                "change_abs": 0.001,
                "change_pct": 0.1134,
                "market_cap": 574809873
            },
            {
                "low": 1.02,
                "high": 1.02,
                "last": 1.02,
                "name": "Litgrid AB",
                "open": 1.02,
                "pe_ttm": 5.2254,
                "sector": "Utilities",
                "symbol": "LGD1L",
                "ticker": "OMXVSE:LGD1L",
                "volume": 83,
                "currency": "EUR",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 514418040
            },
            {
                "low": 28.2,
                "high": 28.2,
                "last": 28.2,
                "name": "Invalda INVL AB",
                "open": 28.2,
                "pe_ttm": 7.4572,
                "sector": "Finance",
                "symbol": "IVL1L",
                "ticker": "OMXVSE:IVL1L",
                "volume": 131,
                "currency": "EUR",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 340369321
            },
            {
                "low": 1.63,
                "high": 1.685,
                "last": 1.635,
                "name": "AB Akola Group",
                "open": 1.685,
                "pe_ttm": 5.6653,
                "sector": "Process Industries",
            
…