/v1/index
Vilnius index (OMX Vilnius Gross)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/lithuania-stock-api/v1/index" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lithuania-stock-api/v1/index", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lithuania-stock-api/v1/index");
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/index",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 1,
"market": "OMXVSE",
"indices": [
{
"low": 1444.7239,
"high": 1449.0252,
"name": "OMX Vilnius Gross Index",
"open": 1448.7352,
"index": "OMXVGI",
"label": "OMX Vilnius Gross",
"value": 1444.9685,
"change_abs": -1.9641,
"change_pct": -0.1357
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:08.105Z",
"request_id": "6458837f-b3be-443e-a7f2-e483fdcd02e1"
},
"status": "ok",
"message": "Index retrieved successfully",
"success": true
}