/v1/screener
Ranked stock screener
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/luxembourg-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/luxembourg-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/luxembourg-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/luxembourg-stock-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"sort": "market_cap_basic",
"count": 20,
"order": "desc",
"total": 21,
"market": "Luxembourg Stock Exchange",
"stocks": [
{
"low": 27.28,
"high": 27.28,
"open": 27.28,
"price": 27.28,
"sector": "Utilities",
"symbol": "LUXSE:GDFLU",
"ticker": "GDFLU",
"volume": 0,
"company": "ENGIE S.A.",
"currency": "EUR",
"change_abs": -0.17999999999999972,
"market_cap": 69561581060,
"change_percent": -0.6554989075018198
},
{
"low": 61.08,
"high": 61.08,
"open": 61.08,
"price": 61.08,
"sector": "Non-Energy Minerals",
"symbol": "LUXSE:MTL",
"ticker": "MTL",
"volume": 0,
"company": "ArcelorMittal SA",
"currency": "EUR",
"change_abs": 0.6799999999999997,
"market_cap": 45075047461,
"change_percent": 1.125827814569536
},
{
"low": 72.7,
"high": 72.7,
"open": 72.7,
"price": 72.7,
"sector": "Producer Manufacturing",
"symbol": "LUXSE:DE000A13SX22",
"ticker": "DE000A13SX22",
"volume": 0,
"company": "HELLA GmbH & Co. KGaA",
"currency": "EUR",
"change_abs": 1.7000000000000028,
"market_cap": 7933333200,
"change_percent": 2.3943661971831025
},
{
"low": 32.65,
"high": 32.65,
"open": 32.65,
"price": 32.65,
"sector": "Consumer Services",
"symbol": "LUXSE:RTLL",
"ticker": "RTLL",
"volume": 0,
"company": "RTL Group S.A.",
"currency": "EUR",
"change_abs": 0.25,
"market_cap": 5021403908,
"change_percent": 0.771604938271605
},
{
"low": 25.2,
"high": 25.2,
"open": 25.2,
"price": 25.2,
"sector": "Finance",
"symbol": "LUXSE:REINI",
"ticker": "REINI",
"volume": 0,
"company": "Reinet Investments S.C.A.",
"currency": "EUR",
"change_abs": 0.1999999999999993,
"market_cap": 4547682591.799963,
"change_percent": 0.7999999999999973
},
{
"low": 52.5,
"high": 52.5,
"open": 52.5,
"price": 52.5,
"sector": "No
…