Convert GBP to HNL
British Pound → Honduran Lempira
1 GBP = 35.562023 HNL(1 HNL = 0.0281199 GBP)
Currency converter
1 GBP =
35.562 HNL
GBP to HNL: last 30 days
Over the last 30 days, 1 GBP traded between 35.5312 and 36.518 HNL, averaging 36.1457 HNL. The GBP/HNL rate is down 2.45% since 2026-08-28.
- 30-day high
- 36.518
- 2026-08-30
- 30-day low
- 35.5312
- 2026-09-24
- 30-day average
- 36.1457
- Days with data: 30
- 30-day change
- -2.45%
- since 2026-08-28
36.518
35.53122026-08-28 → 2026-09-26
| Date | 1 GBP in HNL | Daily change |
|---|---|---|
| 2026-09-26 | 35.562 | 0.00% |
| 2026-09-25 | 35.562 | +0.09% |
| 2026-09-24 | 35.5312 | -0.37% |
| 2026-09-23 | 35.6615 | -0.71% |
| 2026-09-22 | 35.9164 | -0.18% |
| 2026-09-21 | 35.9814 | +0.20% |
| 2026-09-20 | 35.908 | -0.01% |
| 2026-09-19 | 35.9108 | -0.03% |
| 2026-09-18 | 35.9226 | -0.09% |
| 2026-09-17 | 35.9549 | -0.55% |
| 2026-09-16 | 36.1531 | -0.20% |
| 2026-09-15 | 36.2272 | +0.08% |
| 2026-09-14 | 36.1974 | -0.39% |
| 2026-09-13 | 36.3396 | +0.22% |
| 2026-09-12 | 36.2616 | +0.05% |
| Date | 1 GBP in HNL | Daily change |
|---|---|---|
| 2026-09-11 | 36.2438 | -0.09% |
| 2026-09-10 | 36.2779 | -0.29% |
| 2026-09-09 | 36.3835 | +0.10% |
| 2026-09-08 | 36.3481 | +0.09% |
| 2026-09-07 | 36.3137 | -0.17% |
| 2026-09-06 | 36.3771 | -0.00% |
| 2026-09-05 | 36.3774 | +0.06% |
| 2026-09-04 | 36.3572 | +0.46% |
| 2026-09-03 | 36.1893 | -0.08% |
| 2026-09-02 | 36.2168 | -0.37% |
| 2026-09-01 | 36.3513 | -0.01% |
| 2026-08-31 | 36.3554 | -0.45% |
| 2026-08-30 | 36.518 | +0.00% |
| 2026-08-29 | 36.5174 | +0.17% |
| 2026-08-28 | 36.4552 | — |
GBP to HNL conversion table
1 GBP35.562 HNL
5 GBP177.8101 HNL
10 GBP355.6202 HNL
25 GBP889.0506 HNL
50 GBP1,778.1011 HNL
100 GBP3,556.2023 HNL
500 GBP17,781.011 HNL
1,000 GBP35,562.023 HNL
5,000 GBP177,810.11 HNL
10,000 GBP355,620.23 HNL
Get the GBP/HNL rate in your app
One GET request returns the latest GBP → HNL 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/HNL"fetch('https://rate-api.com/api/v1/pair/GBP/HNL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} HNL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/HNL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} HNL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/HNL');
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']} HNL\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "HNL"
},
"rate": 35.562,
"timestamp": 1790439747,
"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
HNL to GBPHonduran Lempira → British Pound0.02812Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.