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/belgium-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/belgium-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/belgium-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/belgium-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/belgium-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": "EBR",
        "results": [
            {
                "low": 70.84,
                "high": 71.52,
                "last": 71.28,
                "name": "Anheuser-Busch InBev SA/NV",
                "open": 71.26,
                "pe_ttm": 23.6434,
                "sector": "Consumer Non-Durables",
                "symbol": "ABI",
                "ticker": "EURONEXT:ABI",
                "volume": 1656502,
                "currency": "EUR",
                "change_abs": 0.2,
                "change_pct": 0.2814,
                "market_cap": 141407693081
            },
            {
                "low": 264.7,
                "high": 275.5,
                "last": 274.9,
                "name": "UCB S.A.",
                "open": 269.3,
                "pe_ttm": 34.2623,
                "sector": "Health Technology",
                "symbol": "UCB",
                "ticker": "EURONEXT:UCB",
                "volume": 169042,
                "currency": "EUR",
                "change_abs": 3.9,
                "change_pct": 1.4391,
                "market_cap": 52229958569
            },
            {
                "low": 771,
                "high": 787,
                "last": 783.6,
                "name": "argenx SE",
                "open": 774,
                "pe_ttm": 45.7027,
                "sector": "Health Technology",
                "symbol": "ARGX",
                "ticker": "EURONEXT:ARGX",
                "volume": 88275,
                "currency": "EUR",
                "change_abs": 8,
                "change_pct": 1.0315,
                "market_cap": 48491836679
            },
            {
                "low": 112.9,
                "high": 115.5,
                "last": 114.6,
                "name": "KBC Group N.V.",
                "open": 113.2,
                "pe_ttm": 13.1593,
                "sector": "Finance",
                "symbol": "KBC",
                "ticker": "EURONEXT:KBC",
                "volume": 483123,
                "currency": "EUR",
                "change_abs": 3.75,
                "change_pct": 3.3829,
                "market_cap": 47864119065
            },
            {
                "low": 133.8,
                "high": 135.9,
                "last": 135.9,
                "name": "Elia Group SA/NV",
                "open": 135.5,
                "pe_ttm": 24.5777,
                "sector": "Utilities",
                "symbol": "ELI",
                "ticker": "EURONEXT:ELI",
                "volume": 79536,
                "currency": "EUR",
                "change_abs": 1,
                "change_pct": 0.7413,
                "market_cap": 14817064190
            },
            {
                "low": 66.1,
                "high": 66.6,
                "last": 66.6,
                "name": "ageas SA/NV",
                "open": 66.35,
                "pe_ttm": 7.3299
…