Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/netherlands-stock-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/netherlands-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/netherlands-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/netherlands-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/netherlands-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": "AMS",
        "results": [
            {
                "low": 1574.2,
                "high": 1629.6,
                "last": 1629.6,
                "name": "ASML Holding NV",
                "open": 1612,
                "pe_ttm": 63.0097,
                "sector": "Electronic Technology",
                "symbol": "ASML",
                "ticker": "EURONEXT:ASML",
                "volume": 1014928,
                "currency": "EUR",
                "change_abs": 53.6,
                "change_pct": 3.401,
                "market_cap": 622482424414
            },
            {
                "low": 39.055,
                "high": 40,
                "last": 39.295,
                "name": "Prosus N.V. Class N",
                "open": 40,
                "pe_ttm": 7.4469,
                "sector": "Technology Services",
                "symbol": "PRX",
                "ticker": "EURONEXT:PRX",
                "volume": 3494564,
                "currency": "EUR",
                "change_abs": 0.09,
                "change_pct": 0.2296,
                "market_cap": 78269306604
            },
            {
                "low": 25.405,
                "high": 26.06,
                "last": 25.96,
                "name": "ING Groep N.V.",
                "open": 25.575,
                "pe_ttm": 11.8979,
                "sector": "Finance",
                "symbol": "INGA",
                "ticker": "EURONEXT:INGA",
                "volume": 9606975,
                "currency": "EUR",
                "change_abs": 0.89,
                "change_pct": 3.5501,
                "market_cap": 73590094729
            },
            {
                "low": 966.8,
                "high": 1015,
                "last": 1015,
                "name": "ASM International N.V.",
                "open": 994.8,
                "pe_ttm": 50.327,
                "sector": "Producer Manufacturing",
                "symbol": "ASM",
                "ticker": "EURONEXT:ASM",
                "volume": 242622,
                "currency": "EUR",
                "change_abs": 41.4,
                "change_pct": 4.2523,
                "market_cap": 49390453529
            },
            {
                "low": 57.92,
                "high": 60.66,
                "last": 60.6,
                "name": "ArcelorMittal SA",
                "open": 59,
                "pe_ttm": 16.2842,
                "sector": "Non-Energy Minerals",
                "symbol": "MT",
                "ticker": "EURONEXT:MT",
                "volume": 3134646,
                "currency": "EUR",
                "change_abs": 3.36,
                "change_pct": 5.87,
                "market_cap": 45075047461
            },
            {
                "low": 70.28,
                "high": 71.44,
                "last": 70.52,
                "name": "Heineken NV",
                "open"
…