/v1/quote
Live quote for one or more LJSE stocks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/slovenia-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/slovenia-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/slovenia-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/slovenia-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": "LJSE",
"quotes": [
{
"low": 261,
"high": 266,
"last": 265,
"name": "Krka, d. d., Novo mesto",
"open": 262,
"pe_ttm": 21.6606,
"sector": "Health Technology",
"symbol": "KRKG",
"ticker": "LJSE:KRKG",
"volume": 2863,
"currency": "EUR",
"change_abs": 5,
"change_pct": 1.9231,
"market_cap": 8099436798
},
{
"low": 228,
"high": 233,
"last": 233,
"name": "Nova Ljubljanska banka d.d.",
"open": 229,
"pe_ttm": 9.3852,
"sector": "Finance",
"symbol": "NLBR",
"ticker": "LJSE:NLBR",
"volume": 4030,
"currency": "EUR",
"change_abs": 7,
"change_pct": 3.0973,
"market_cap": 4520000000
},
{
"low": 55,
"high": 56.6,
"last": 56.2,
"name": "Petrol dd Ljubljana",
"open": 55,
"pe_ttm": 15.2651,
"sector": "Energy Minerals",
"symbol": "PETG",
"ticker": "LJSE:PETG",
"volume": 9966,
"currency": "EUR",
"change_abs": 2.8,
"change_pct": 5.2434,
"market_cap": 2195357207
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:04.603Z",
"request_id": "4debd8bd-5934-4594-ab02-b8497a0b08f2"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}