Zum Inhalt springen
GET /v1/quote

Live quote for one or more Vilnius stocks

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/lithuania-stock-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}