/v1/quote
Live quote for one or more BSE Sofia stocks
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/bulgaria-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bulgaria-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bulgaria-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/bulgaria-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": "BSESOF",
"quotes": [
{
"low": 60.1,
"high": 60.4,
"last": 60.1,
"name": "Shelly Group PLC",
"open": 60.2,
"pe_ttm": 40.5232,
"sector": "Communications",
"symbol": "SLYG",
"ticker": "BSESOF:SLYG",
"volume": 62,
"currency": "EUR",
"change_abs": -0.4,
"change_pct": -0.6612,
"market_cap": 1094176255
},
{
"low": 1.87,
"high": 1.89,
"last": 1.89,
"name": "Sopharma AD",
"open": 1.89,
"pe_ttm": 13.0165,
"sector": "Health Technology",
"symbol": "SFA",
"ticker": "BSESOF:SFA",
"volume": 7090,
"currency": "EUR",
"change_abs": 0,
"change_pct": 0,
"market_cap": 968573428
},
{
"low": 3.12,
"high": 3.12,
"last": 3.12,
"name": "First Investment Bank AD",
"open": 3.12,
"pe_ttm": 4.7699,
"sector": "Finance",
"symbol": "FIB",
"ticker": "BSESOF:FIB",
"volume": 5,
"currency": "EUR",
"change_abs": 0,
"change_pct": 0,
"market_cap": 465144537
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:03.851Z",
"request_id": "2c50c5bb-7bc6-4bdd-8f2d-388b87b09b55"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}