Skip to content
GET /v1/quote

Live quote for one or more Riga 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/latvia-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/latvia-stock-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/latvia-stock-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/latvia-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/latvia-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": "OMXRSE",
        "quotes": [
            {
                "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": 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": "Electronic Technology",
                "symbol": "SAF1R",
                "ticker": "OMXRSE:SAF1R",
                "volume": 107,
                "currency": "EUR",
                "change_abs": -0.1,
                "change_pct": -0.9091,
                "market_cap": 32671979.999999996
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:06.926Z",
        "request_id": "ee6f7c26-d4d2-42ff-84f2-ab820cca92a5"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}