/v1/screener
Rank local primary listings
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/bulgaria-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bulgaria-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bulgaria-stock-api/v1/screener");
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/screener",
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": {
"sort": "market_cap",
"count": 25,
"order": "desc",
"market": "BSESOF",
"results": [
{
"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": 8.55,
"high": 8.55,
"last": 8.55,
"name": "Tchaikapharma High Quality Medicines, Inc.",
"open": 8.55,
"pe_ttm": 215.9091,
"sector": "Health Technology",
"symbol": "THQM",
"ticker": "BSESOF:THQM",
"volume": 20,
"currency": "EUR",
"change_abs": -0.55,
"change_pct": -6.044,
"market_cap": 872690050
},
{
"low": 86,
"high": 86,
"last": 86,
"name": "Speedy AD-Sofia",
"open": 86,
"pe_ttm": 17.2438,
"sector": "Transportation",
"symbol": "SPDY",
"ticker": "BSESOF:SPDY",
"volume": 14,
"currency": "EUR",
"change_abs": -3.5,
"change_pct": -3.9106,
"market_cap": 481296924
},
{
"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
},
{
"low": 1.07,
"high": 1.08,
"last": 1.07,
"name": "Eurohold Bulgaria AD",
"open": 1.08,
"pe_ttm": 6.3127,
…