/v1/quote
Live quote for one or more BÉT stocks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/hungary-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hungary-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hungary-stock-api/v1/quote");
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/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 3,
"market": "BET",
"quotes": [
{
"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": 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
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:19.659Z",
"request_id": "37382b6f-9abf-45a9-87af-d6091d53a600"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}