/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/czech-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/czech-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/czech-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/czech-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": "PSECZ",
"results": [
{
"low": 1240,
"high": 1257,
"last": 1247,
"name": "CEZ as",
"open": 1246,
"pe_ttm": 23.1243,
"sector": "Utilities",
"symbol": "CEZ",
"ticker": "PSECZ:CEZ",
"volume": 74101,
"currency": "CZK",
"change_abs": 0,
"change_pct": 0,
"market_cap": 667735467896
},
{
"low": 983,
"high": 1002,
"last": 986,
"name": "Komercni banka, a.s.",
"open": 990,
"pe_ttm": 10.4151,
"sector": "Finance",
"symbol": "KOMB",
"ticker": "PSECZ:KOMB",
"volume": 118678,
"currency": "CZK",
"change_abs": 0.5,
"change_pct": 0.0507,
"market_cap": 186211928497
},
{
"low": 193,
"high": 195,
"last": 195,
"name": "MONETA Money Bank AS",
"open": 193,
"pe_ttm": 15.0566,
"sector": "Finance",
"symbol": "MONET",
"ticker": "PSECZ:MONET",
"volume": 117807,
"currency": "CZK",
"change_abs": 2.8,
"change_pct": 1.4568,
"market_cap": 99645000000
},
{
"low": 997,
"high": 1016,
"last": 999,
"name": "COLT CZ GROUP SE",
"open": 1010,
"pe_ttm": 28.942,
"sector": "Electronic Technology",
"symbol": "COLT",
"ticker": "PSECZ:COLT",
"volume": 32711,
"currency": "CZK",
"change_abs": -7,
"change_pct": -0.6958,
"market_cap": 62252912281
},
{
"low": 18600,
"high": 18680,
"last": 18600,
"name": "Philip Morris CR as",
"open": 18660,
"pe_ttm": null,
"sector": "Consumer Non-Durables",
"symbol": "TABAK",
"ticker": "PSECZ:TABAK",
"volume": 100,
"currency": "CZK",
"change_abs": 40,
"change_pct": 0.2155,
"market_cap": 35594782019
},
{
"low": 490,
"high": 495,
"last": 495,
"name": "Doosan Skoda Power AS",
"open": 493,
"pe_ttm": 30.283,
"sector":
…