Convert USD to HUF
US Dollar → Hungarian Forint
1 USD = 320.33675 HUF(1 HUF = 0.00312171 USD)
Currency converter
1 USD =
320.3368 HUF
USD to HUF: last 30 days
Over the last 30 days, 1 USD traded between 312.35 and 322.1167 HUF, averaging 315.6698 HUF. The USD/HUF rate is up 2.24% since 2026-08-28.
- 30-day high
- 322.1167
- 2026-09-24
- 30-day low
- 312.35
- 2026-09-09
- 30-day average
- 315.6698
- Days with data: 30
- 30-day change
- +2.24%
- since 2026-08-28
322.1167
312.352026-08-28 → 2026-09-26
| Date | 1 USD in HUF | Daily change |
|---|---|---|
| 2026-09-26 | 320.3368 | 0.00% |
| 2026-09-25 | 320.3368 | -0.55% |
| 2026-09-24 | 322.1167 | +0.90% |
| 2026-09-23 | 319.2446 | +1.21% |
| 2026-09-22 | 315.43 | +0.01% |
| 2026-09-21 | 315.4 | -0.78% |
| 2026-09-20 | 317.87 | 0.00% |
| 2026-09-19 | 317.87 | 0.00% |
| 2026-09-18 | 317.87 | +0.54% |
| 2026-09-17 | 316.16 | +0.08% |
| 2026-09-16 | 315.9 | -0.41% |
| 2026-09-15 | 317.21 | +0.29% |
| 2026-09-14 | 316.28 | +0.60% |
| 2026-09-13 | 314.4 | 0.00% |
| 2026-09-12 | 314.4 | 0.00% |
| Date | 1 USD in HUF | Daily change |
|---|---|---|
| 2026-09-11 | 314.4 | +0.12% |
| 2026-09-10 | 314.01 | +0.53% |
| 2026-09-09 | 312.35 | -0.33% |
| 2026-09-08 | 313.37 | +0.28% |
| 2026-09-07 | 312.51 | -0.02% |
| 2026-09-06 | 312.58 | 0.00% |
| 2026-09-05 | 312.58 | 0.00% |
| 2026-09-04 | 312.58 | -1.19% |
| 2026-09-03 | 316.34 | -0.53% |
| 2026-09-02 | 318.02 | +0.51% |
| 2026-09-01 | 316.4 | +0.70% |
| 2026-08-31 | 314.2 | +0.28% |
| 2026-08-30 | 313.31 | 0.00% |
| 2026-08-29 | 313.31 | 0.00% |
| 2026-08-28 | 313.31 | — |
USD to HUF conversion table
1 USD320.3368 HUF
5 USD1,601.6838 HUF
10 USD3,203.3675 HUF
25 USD8,008.4188 HUF
50 USD16,016.838 HUF
100 USD32,033.675 HUF
500 USD160,168.38 HUF
1,000 USD320,336.75 HUF
5,000 USD1,601,683.8 HUF
10,000 USD3,203,367.5 HUF
Get the USD/HUF rate in your app
One GET request returns the latest USD → 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/USD/HUF"fetch('https://rate-api.com/api/v1/pair/USD/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/HUF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "HUF"
},
"rate": 320.3368,
"timestamp": 1790429370,
"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 USDHungarian Forint → US Dollar0.0031217Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.