/v1/screener
Rank local primary listings
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/mexico-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mexico-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mexico-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/mexico-stock-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sort": "market_cap",
"count": 25,
"order": "desc",
"market": "BMV",
"results": [
{
"low": 206.42,
"high": 213.06,
"last": 209.69,
"name": "Grupo Mexico S.A.B. de C.V. Class B",
"open": 206.5,
"pe_ttm": 15.3796,
"sector": "Non-Energy Minerals",
"symbol": "GMEXICO/B",
"ticker": "BMV:GMEXICO/B",
"volume": 2926233,
"currency": "MXN",
"change_abs": 3.07,
"change_pct": 1.4858,
"market_cap": 1632436669006
},
{
"low": 23.65,
"high": 24.49,
"last": 23.88,
"name": "America Movil SAB de CV Class B",
"open": 23.75,
"pe_ttm": 16.4553,
"sector": "Communications",
"symbol": "AMX/B",
"ticker": "BMV:AMX/B",
"volume": 60589195,
"currency": "MXN",
"change_abs": 0.04,
"change_pct": 0.1678,
"market_cap": 1461742508629
},
{
"low": 51.71,
"high": 52.34,
"last": 52.08,
"name": "Wal-Mart de Mexico SAB de CV",
"open": 52,
"pe_ttm": 17.9667,
"sector": "Retail Trade",
"symbol": "WALMEX",
"ticker": "BMV:WALMEX",
"volume": 27340371,
"currency": "MXN",
"change_abs": 0.27,
"change_pct": 0.5211,
"market_cap": 908604495539
},
{
"low": 182.52,
"high": 189.24,
"last": 188.65,
"name": "Grupo Financiero Banorte SAB de CV Class O",
"open": 182.99,
"pe_ttm": 8.8945,
"sector": "Finance",
"symbol": "GFNORTE/O",
"ticker": "BMV:GFNORTE/O",
"volume": 4748540,
"currency": "MXN",
"change_abs": 6.03,
"change_pct": 3.3019,
"market_cap": 530701955449
},
{
"low": 166.46,
"high": 166.46,
"last": 166.46,
"name": "Fomento Economico Mexicano SAB de CV Units Cons. Of 5 ShsB",
"open": 166.46,
"pe_ttm": 20.0219,
"sector": "Consumer Non-Durables",
"symbol": "FEMSA/UB",
"ticker": "BMV:FEMSA/UB",
"volume": 87,
"currency": "MXN",
"change_abs": 0,
"change_pct": 0,
"market_cap": 448660788400
},
{
"low": 208.35
…