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/newzealand-stock-api

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/newzealand-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/newzealand-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/newzealand-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/newzealand-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": "NZX",
        "results": [
            {
                "low": 38.49,
                "high": 39.49,
                "last": 38.95,
                "name": "Fisher & Paykel Healthcare Corporation Limited",
                "open": 39.49,
                "pe_ttm": 49.1359,
                "sector": "Health Technology",
                "symbol": "FPH",
                "ticker": "NZX:FPH",
                "volume": 46416,
                "currency": "NZD",
                "change_abs": -0.5,
                "change_pct": -1.2674,
                "market_cap": 23168551556
            },
            {
                "low": 5.83,
                "high": 5.98,
                "last": 5.83,
                "name": "Meridian Energy Limited",
                "open": 5.98,
                "pe_ttm": null,
                "sector": "Utilities",
                "symbol": "MEL",
                "ticker": "NZX:MEL",
                "volume": 132098,
                "currency": "NZD",
                "change_abs": -0.12,
                "change_pct": -2.0168,
                "market_cap": 15759154097
            },
            {
                "low": 14.86,
                "high": 15.1,
                "last": 14.995,
                "name": "Infratil Limited",
                "open": 14.86,
                "pe_ttm": 26.5351,
                "sector": "Finance",
                "symbol": "IFT",
                "ticker": "NZX:IFT",
                "volume": 258408,
                "currency": "NZD",
                "change_abs": 0.185,
                "change_pct": 1.2492,
                "market_cap": 14799818544
            },
            {
                "low": 8.26,
                "high": 8.4,
                "last": 8.37,
                "name": "Auckland International Airport Limited",
                "open": 8.26,
                "pe_ttm": 34.6011,
                "sector": "Transportation",
                "symbol": "AIA",
                "ticker": "NZX:AIA",
                "volume": 248124,
                "currency": "NZD",
                "change_abs": 0.14,
                "change_pct": 1.7011,
                "market_cap": 13987737160
            },
            {
                "low": 9.42,
                "high": 9.57,
                "last": 9.44,
                "name": "Contact Energy Limited",
                "open": 9.56,
                "pe_ttm": 21.204,
                "sector": "Utilities",
                "symbol": "CEN",
                "ticker": "NZX:CEN",
                "volume": 218168,
                "currency": "NZD",
                "change_abs": -0.11,
                "change_pct": -1.1518,
                "market_cap": 10224488772
            },
            {
                "low": 6.885,
                "high": 6.99,
                "last": 6.92,
                "name": "Mercury NZ Ltd.",
                "open": 6.
…