Magyar Nemzeti Bank Exchange Rate API
Official Magyar Nemzeti Bank (Hungary) daily exchange rates as JSON: 32 currencies, history back to 2016. The published HUF rates required for tax, audits, and compliant invoicing.
About Magyar Nemzeti Bank
Magyar Nemzeti Bank is Hungary's central bank. Its official forint exchange rates โ published every business day around 11:00 CET for over 30 currencies โ are the rates Hungarian accounting and tax law designates for invoice conversion and VAT.
- Official website: www.mnb.hu
- Official rate publication: Official exchange rates
Quick start
One request for the pair you need โ EUR to HUF at the official Magyar Nemzeti Bank rate:
curl "https://allratestoday.com/api/v1/central-bank/mnb/latest?source=EUR&target=HUF" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/mnb/latest" \
-H "Authorization: Bearer art_live_your_key" On paid plans, any historical date or a time series:
curl "https://allratestoday.com/api/v1/central-bank/mnb/history?source=EUR&target=HUF&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-08-12)
The most recent table as published by Magyar Nemzeti Bank โ exactly what the /latest endpoint returns right now. Values are HUF per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (free account required)
| Base | Quote | Type | Rate |
|---|---|---|---|
AUD | HUF | reference | 223.12 |
BRL | HUF | reference | 61.24 |
CAD | HUF | reference | 226.84 |
CHF | HUF | reference | 388.82 |
CNY | HUF | reference | 46.86 |
CZK | HUF | reference | 15.04 |
DKK | HUF | reference | 48.77 |
EUR | HUF | reference | 364.64 |
GBP | HUF | reference | 426.99 |
HKD | HUF | reference | 40.27 |
IDR | HUF | reference | 0.0177 |
ILS | HUF | reference | 105.48 |
INR | HUF | reference | 3.31 |
ISK | HUF | reference | 2.57 |
JPY | HUF | reference | 1.9836 |
KRW | HUF | reference | 0.2231 |
MXN | HUF | reference | 18.52 |
MYR | HUF | reference | 77.33 |
NOK | HUF | reference | 33.28 |
NZD | HUF | reference | 185.23 |
PHP | HUF | reference | 5.16 |
PLN | HUF | reference | 84.73 |
RON | HUF | reference | 69.58 |
RSD | HUF | reference | 3.11 |
RUB | HUF | reference | 3.81 |
SEK | HUF | reference | 33.13 |
SGD | HUF | reference | 246.86 |
THB | HUF | reference | 9.55 |
TRY | HUF | reference | 6.62 |
UAH | HUF | reference | 7.06 |
USD | HUF | reference | 316.03 |
ZAR | HUF | reference | 19.54 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints โ magyar-nemzeti-bank-exchange-rate:
npm install magyar-nemzeti-bank-exchange-rate import { getRate } from 'magyar-nemzeti-bank-exchange-rate';
const pair = await getRate('EUR', 'HUF', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date); Zero dependencies, TypeScript types included, and it runs anywhere fetch exists โ Node 18+, Bun, Deno, and edge runtimes.
Why use the official Magyar Nemzeti Bank rate?
Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Hungary and beyond typically require the official rate published by Magyar Nemzeti Bank for a given date โ a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.
Pairs the bank doesn't print directly are resolved from its table (inverse or cross via HUF) and explicitly flagged "derived": true โ so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/mnb/latestโ latest table or single pair (all plans)GET /api/v1/central-bank/mnb/{YYYY-MM-DD}โ the table for any date (paid plans)GET /api/v1/central-bank/mnb/historyโ time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/mnb/availabilityโ publication calendar: the dates the bank actually published (all plans)
Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota โ rates change once per business day, so caching a published table locally makes a small quota go far.
Frequently asked questions
Is there an API for Magyar Nemzeti Bank exchange rates?
Yes โ this one. Official daily HUF rates as clean JSON, latest table on every plan including free.
How often are the rates updated?
Magyar Nemzeti Bank publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-12).
Are these the official rates?
Yes โ ingested from Magyar Nemzeti Bank's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.
Magyar Nemzeti Bank rates, one API key
Latest table on every plan. History back to 2016 on paid plans. No credit card to start.
Get Free API Key Read the Docs