Zum Inhalt springen
GET /v1/screener

Rank local primary listings

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/portugal-stock-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/portugal-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/portugal-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/portugal-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/portugal-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": "ELI",
        "results": [
            {
                "low": 4.424,
                "high": 4.5,
                "last": 4.467,
                "name": "EDP S.A.",
                "open": 4.5,
                "pe_ttm": 16.8439,
                "sector": "Utilities",
                "symbol": "EDP",
                "ticker": "EURONEXT:EDP",
                "volume": 9250814,
                "currency": "EUR",
                "change_abs": -0.015,
                "change_pct": -0.3347,
                "market_cap": 18461620272
            },
            {
                "low": 13.53,
                "high": 13.95,
                "last": 13.63,
                "name": "EDP Renewables SA",
                "open": 13.79,
                "pe_ttm": 66.1972,
                "sector": "Utilities",
                "symbol": "EDPR",
                "ticker": "EURONEXT:EDPR",
                "volume": 1660150,
                "currency": "EUR",
                "change_abs": -0.1,
                "change_pct": -0.7283,
                "market_cap": 14443697145
            },
            {
                "low": 18.725,
                "high": 19.25,
                "last": 19.12,
                "name": "Galp Energia, SGPS S.A. Class B",
                "open": 19.1,
                "pe_ttm": 21.7199,
                "sector": "Energy Minerals",
                "symbol": "GALP",
                "ticker": "EURONEXT:GALP",
                "volume": 2476746,
                "currency": "EUR",
                "change_abs": -0.545,
                "change_pct": -2.7714,
                "market_cap": 14091877957
            },
            {
                "low": 0.9322,
                "high": 0.9546,
                "last": 0.95,
                "name": "Banco Comercial Portugues S.A.",
                "open": 0.9366,
                "pe_ttm": 13.1579,
                "sector": "Finance",
                "symbol": "BCP",
                "ticker": "EURONEXT:BCP",
                "volume": 82619137,
                "currency": "EUR",
                "change_abs": 0.0332,
                "change_pct": 3.6213,
                "market_cap": 14064395429
            },
            {
                "low": 17.62,
                "high": 17.86,
                "last": 17.76,
                "name": "Jeronimo Martins, SGPS S.A.",
                "open": 17.85,
                "pe_ttm": null,
                "sector": "Retail Trade",
                "symbol": "JMT",
                "ticker": "EURONEXT:JMT",
                "volume": 1312936,
                "currency": "EUR",
                "change_abs": 0.08,
                "change_pct": 0.4525,
                "market_cap": 11176248689
            },
            {
                "low": 1.964,
                "high": 1.992,
                "last": 1.982,
                "name": "Sonae SGPS SA",
           
…