Convert EUR to HUF
Euro → Hungarian Forint
1 EUR = 365.28 HUF(1 HUF = 0.00273763 EUR)
Currency converter
1 EUR =
365.28 HUF
EUR to HUF: last 30 days
Over the last 30 days, 1 EUR traded between 361.5782 and 368.2023 HUF, averaging 364.5566 HUF. The EUR/HUF rate is up 0.14% since 2026-08-28.
- 30-day high
- 368.2023
- 2026-09-02
- 30-day low
- 361.5782
- 2026-09-22
- 30-day average
- 364.5566
- Days with data: 30
- 30-day change
- +0.14%
- since 2026-08-28
368.2023
361.57822026-08-28 → 2026-09-26
| Date | 1 EUR in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 365.28 | 0.00% |
| 2026-09-25 | 365.28 | -0.24% |
| 2026-09-24 | 366.15 | +0.51% |
| 2026-09-23 | 364.29 | +0.75% |
| 2026-09-22 | 361.5782 | -0.23% |
| 2026-09-21 | 362.3954 | -0.52% |
| 2026-09-20 | 364.2792 | 0.00% |
| 2026-09-19 | 364.2792 | 0.00% |
| 2026-09-18 | 364.2792 | +0.36% |
| 2026-09-17 | 362.9851 | -0.40% |
| 2026-09-16 | 364.4523 | -0.43% |
| 2026-09-15 | 366.027 | +0.19% |
| 2026-09-14 | 365.3333 | +0.24% |
| 2026-09-13 | 364.4541 | 0.00% |
| 2026-09-12 | 364.4541 | 0.00% |
| Date | 1 EUR in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 364.4541 | -0.08% |
| 2026-09-10 | 364.7547 | +0.22% |
| 2026-09-09 | 363.951 | +0.00% |
| 2026-09-08 | 363.9478 | +0.21% |
| 2026-09-07 | 363.1979 | -0.02% |
| 2026-09-06 | 363.2793 | 0.00% |
| 2026-09-05 | 363.2793 | 0.00% |
| 2026-09-04 | 363.2793 | -1.13% |
| 2026-09-03 | 367.4271 | -0.21% |
| 2026-09-02 | 368.2023 | +0.41% |
| 2026-09-01 | 366.7088 | +0.65% |
| 2026-08-31 | 364.3448 | -0.12% |
| 2026-08-30 | 364.7848 | 0.00% |
| 2026-08-29 | 364.7848 | 0.00% |
| 2026-08-28 | 364.7848 | — |
EUR to HUF conversion table
1 EUR365.28 HUF
5 EUR1,826.4 HUF
10 EUR3,652.8 HUF
25 EUR9,132 HUF
50 EUR18,264 HUF
100 EUR36,528 HUF
500 EUR182,640 HUF
1,000 EUR365,280 HUF
5,000 EUR1,826,400 HUF
10,000 EUR3,652,800 HUF
Get the EUR/HUF rate in your app
One GET request returns the latest EUR → HUF rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/EUR/HUF"fetch('https://rate-api.com/api/v1/pair/EUR/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/HUF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "HUF"
},
"rate": 365.28,
"timestamp": 1790429439,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
HUF to EURHungarian Forint → Euro0.0027376Convert EUR to other currencies
Convert other currencies to HUF
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.