/v1/screener
Rank local primary listings
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/france-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/france-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/france-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/france-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",
"count": 25,
"order": "desc",
"market": "EPA",
"results": [
{
"low": 501.1,
"high": 521.2,
"last": 510.6,
"name": "LVMH Moet Hennessy Louis Vuitton SE",
"open": 508,
"pe_ttm": 23.3575,
"sector": "Consumer Non-Durables",
"symbol": "MC",
"ticker": "EURONEXT:MC",
"volume": 930219,
"currency": "EUR",
"change_abs": 17.4,
"change_pct": 3.528,
"market_cap": 252856203608
},
{
"low": 386.3,
"high": 394.25,
"last": 390.25,
"name": "L'Oreal S.A.",
"open": 388.2,
"pe_ttm": 34.0982,
"sector": "Consumer Non-Durables",
"symbol": "OR",
"ticker": "EURONEXT:OR",
"volume": 472567,
"currency": "EUR",
"change_abs": 6.95,
"change_pct": 1.8132,
"market_cap": 207780137711
},
{
"low": 1676,
"high": 1739,
"last": 1697,
"name": "Hermes International SCA",
"open": 1680.5,
"pe_ttm": 39.4004,
"sector": "Consumer Non-Durables",
"symbol": "RMS",
"ticker": "EURONEXT:RMS",
"volume": 126690,
"currency": "EUR",
"change_abs": 54,
"change_pct": 3.2867,
"market_cap": 177580254723
},
{
"low": 74.48,
"high": 76.51,
"last": 76.38,
"name": "TotalEnergies SE",
"open": 75.79,
"pe_ttm": 12.859,
"sector": "Energy Minerals",
"symbol": "TTE",
"ticker": "EURONEXT:TTE",
"volume": 5078966,
"currency": "EUR",
"change_abs": -1.62,
"change_pct": -2.0769,
"market_cap": 170070692937
},
{
"low": 263.3,
"high": 271.2,
"last": 265.3,
"name": "Schneider Electric SE",
"open": 270.95,
"pe_ttm": 36.3579,
"sector": "Producer Manufacturing",
"symbol": "SU",
"ticker": "EURONEXT:SU",
"volume": 990380,
"currency": "EUR",
"change_abs": 1,
"change_pct": 0.3784,
"market_cap": 149424081119
},
{
"low": 177.78,
"high": 183.72,
"last": 179.28,
"name": "A
…