/v1/quote
Live quote for one or more BELEX stocks
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/serbia-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/serbia-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/serbia-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/serbia-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 3,
"market": "BELEX",
"quotes": [
{
"low": 2098,
"high": 2098,
"last": 2098,
"name": "Aerodrom Nikola Tesla AD",
"open": 2098,
"pe_ttm": null,
"sector": "Transportation",
"symbol": "AERO",
"ticker": "BELEX:AERO",
"volume": 20,
"currency": "RSD",
"change_abs": -1,
"change_pct": -0.0476,
"market_cap": 73484822159
},
{
"low": 34501,
"high": 34501,
"last": 34501,
"name": "Messer Tehnogas AD",
"open": 34501,
"pe_ttm": null,
"sector": "Process Industries",
"symbol": "TGAS",
"ticker": "BELEX:TGAS",
"volume": 11,
"currency": "RSD",
"change_abs": 0,
"change_pct": 0,
"market_cap": 35765735223
},
{
"low": 1910,
"high": 1910,
"last": 1910,
"name": "Dunav Osiguranje AD",
"open": 1910,
"pe_ttm": 6.431,
"sector": "Finance",
"symbol": "DNOS",
"ticker": "BELEX:DNOS",
"volume": 368,
"currency": "RSD",
"change_abs": 0,
"change_pct": 0,
"market_cap": 29056944016
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:05.341Z",
"request_id": "0e9dd17e-0785-41bb-85ff-13dc7c1f5b7d"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}