Skip to content
GET /v1/screener

Rank local primary listings

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/hungary-stock-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/hungary-stock-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hungary-stock-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hungary-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/hungary-stock-api/v1/screener",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "sort": "market_cap",
        "count": 25,
        "order": "desc",
        "market": "BET",
        "results": [
            {
                "low": 41500,
                "high": 42490,
                "last": 42490,
                "name": "OTP Bank Nyrt",
                "open": 41500,
                "pe_ttm": 9.6415,
                "sector": "Finance",
                "symbol": "OTP",
                "ticker": "BET:OTP",
                "volume": 437583,
                "currency": "HUF",
                "change_abs": 1610,
                "change_pct": 3.9384,
                "market_cap": 11435534894714
            },
            {
                "low": 3820,
                "high": 3960,
                "last": 3826,
                "name": "MOL Hungarian Oil & Gas Plc Class A",
                "open": 3940,
                "pe_ttm": 13.21,
                "sector": "Energy Minerals",
                "symbol": "MOL",
                "ticker": "BET:MOL",
                "volume": 529481,
                "currency": "HUF",
                "change_abs": -104,
                "change_pct": -2.6463,
                "market_cap": 3065630635833
            },
            {
                "low": 2702,
                "high": 2740,
                "last": 2730,
                "name": "Magyar Telekom Telecommunications PLC",
                "open": 2702,
                "pe_ttm": 11.3911,
                "sector": "Communications",
                "symbol": "MTELEKOM",
                "ticker": "BET:MTELEKOM",
                "volume": 900513,
                "currency": "HUF",
                "change_abs": 40,
                "change_pct": 1.487,
                "market_cap": 2562425755005
            },
            {
                "low": 11700,
                "high": 11950,
                "last": 11930,
                "name": "Chemical Works of Gedeon Richter Plc",
                "open": 11790,
                "pe_ttm": 9.5021,
                "sector": "Health Technology",
                "symbol": "RICHTER",
                "ticker": "BET:RICHTER",
                "volume": 92880,
                "currency": "HUF",
                "change_abs": 280,
                "change_pct": 2.4034,
                "market_cap": 2181435523986.9998
            },
            {
                "low": 2600,
                "high": 2700,
                "last": 2620,
                "name": "MBH Bank Plc. Class A",
                "open": 2700,
                "pe_ttm": 6.1942,
                "sector": "Finance",
                "symbol": "MKBBANK",
                "ticker": "BET:MKBBANK",
                "volume": 10584,
                "currency": "HUF",
                "change_abs": -60,
                "change_pct": -2.2388,
                "market_cap": 785865753784
            },
            {
                "low": 1860,
                "high": 2064,
                "last": 2026,
                "name": "4iG Nyrt.",
 
…