Convert GBP to HUF
British Pound → Hungarian Forint
1 GBP = 424.52205 HUF(1 HUF = 0.00235559 GBP)
Currency converter
1 GBP =
424.5221 HUF
GBP to HUF: last 30 days
Over the last 30 days, 1 GBP traded between 421.5175 and 428.7891 HUF, averaging 424.7007 HUF. The GBP/HUF rate is down 0.24% since 2026-08-29.
- 30-day high
- 428.7891
- 2026-09-02
- 30-day low
- 421.5175
- 2026-09-22
- 30-day average
- 424.7007
- Days with data: 30
- 30-day change
- -0.24%
- since 2026-08-29
428.7891
421.51752026-08-29 → 2026-09-27
| Date | 1 GBP in HUF | Daily change |
|---|---|---|
| 2026-09-27 | 424.5221 | 0.00% |
| 2026-09-26 | 424.5221 | 0.00% |
| 2026-09-25 | 424.5221 | -0.31% |
| 2026-09-24 | 425.8251 | +0.47% |
| 2026-09-23 | 423.8394 | +0.55% |
| 2026-09-22 | 421.5175 | -0.23% |
| 2026-09-21 | 422.4711 | -0.40% |
| 2026-09-20 | 424.1717 | 0.00% |
| 2026-09-19 | 424.1717 | 0.00% |
| 2026-09-18 | 424.1717 | +0.30% |
| 2026-09-17 | 422.9113 | -0.51% |
| 2026-09-16 | 425.071 | -0.62% |
| 2026-09-15 | 427.7027 | +0.21% |
| 2026-09-14 | 426.8056 | +0.50% |
| 2026-09-13 | 424.6927 | 0.00% |
| Date | 1 GBP in HUF | Daily change |
|---|---|---|
| 2026-09-12 | 424.6927 | 0.00% |
| 2026-09-11 | 424.6927 | +0.03% |
| 2026-09-10 | 424.5501 | +0.20% |
| 2026-09-09 | 423.6978 | -0.18% |
| 2026-09-08 | 424.4768 | +0.39% |
| 2026-09-07 | 422.8479 | -0.02% |
| 2026-09-06 | 422.9198 | 0.00% |
| 2026-09-05 | 422.9198 | 0.00% |
| 2026-09-04 | 422.9198 | -0.95% |
| 2026-09-03 | 426.9672 | -0.42% |
| 2026-09-02 | 428.7891 | +0.16% |
| 2026-09-01 | 428.123 | +0.64% |
| 2026-08-31 | 425.3994 | -0.04% |
| 2026-08-30 | 425.5542 | 0.00% |
| 2026-08-29 | 425.5542 | — |
GBP to HUF conversion table
1 GBP424.5221 HUF
5 GBP2,122.6103 HUF
10 GBP4,245.2205 HUF
25 GBP10,613.051 HUF
50 GBP21,226.103 HUF
100 GBP42,452.205 HUF
500 GBP212,261.03 HUF
1,000 GBP424,522.05 HUF
5,000 GBP2,122,610.3 HUF
10,000 GBP4,245,220.5 HUF
Get the GBP/HUF rate in your app
One GET request returns the latest GBP → 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/GBP/HUF"fetch('https://rate-api.com/api/v1/pair/GBP/HUF', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} HUF`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/HUF",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} HUF")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/HUF');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} HUF\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "HUF"
},
"rate": 424.5221,
"timestamp": 1790546859,
"date": "2026-09-27"
}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 GBPHungarian Forint → British Pound0.0023556Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.