Skip to content
GET /v1/quote

Live quote for one or more Vilnius stocks

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/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lithuania-stock-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lithuania-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/lithuania-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": "OMXVSE",
        "quotes": [
            {
                "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
            },
            {
                "found": false,
                "symbol": "SAB1L",
                "ticker": "OMXVSE:SAB1L"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:07.659Z",
        "request_id": "0741dc3d-c944-4116-88d9-c0eeba26a25d"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}