Convert GBP to UAH
British Pound → Ukrainian Hryvnia
1 GBP = 59.425473 UAH(1 UAH = 0.0168278 GBP)
Currency converter
1 GBP =
59.4255 UAH
GBP to UAH: last 30 days
Over the last 30 days, 1 GBP traded between 59.4255 and 60.5871 UAH, averaging 60.0389 UAH. The GBP/UAH rate is down 1.92% since 2026-08-29.
- 30-day high
- 60.5871
- 2026-08-29
- 30-day low
- 59.4255
- 2026-09-25
- 30-day average
- 60.0389
- Days with data: 30
- 30-day change
- -1.92%
- since 2026-08-29
60.5871
59.42552026-08-29 → 2026-09-27
| Date | 1 GBP in UAH | Daily change |
|---|---|---|
| 2026-09-27 | 59.4255 | 0.00% |
| 2026-09-26 | 59.4255 | 0.00% |
| 2026-09-25 | 59.4255 | -0.05% |
| 2026-09-24 | 59.4523 | -0.17% |
| 2026-09-23 | 59.5537 | -0.45% |
| 2026-09-22 | 59.8242 | -0.13% |
| 2026-09-21 | 59.9026 | +0.49% |
| 2026-09-20 | 59.6085 | +0.00% |
| 2026-09-19 | 59.6059 | -0.03% |
| 2026-09-18 | 59.6227 | -0.21% |
| 2026-09-17 | 59.7452 | -0.52% |
| 2026-09-16 | 60.059 | -0.34% |
| 2026-09-15 | 60.2646 | +0.30% |
| 2026-09-14 | 60.0845 | -0.26% |
| 2026-09-13 | 60.2402 | +0.17% |
| Date | 1 GBP in UAH | Daily change |
|---|---|---|
| 2026-09-12 | 60.1399 | +0.02% |
| 2026-09-11 | 60.1257 | -0.46% |
| 2026-09-10 | 60.4051 | -0.22% |
| 2026-09-09 | 60.5388 | +0.62% |
| 2026-09-08 | 60.163 | -0.41% |
| 2026-09-07 | 60.4123 | +0.08% |
| 2026-09-06 | 60.3625 | +0.18% |
| 2026-09-05 | 60.2531 | -0.32% |
| 2026-09-04 | 60.4494 | +0.39% |
| 2026-09-03 | 60.2121 | +0.28% |
| 2026-09-02 | 60.0457 | -0.26% |
| 2026-09-01 | 60.1995 | -0.49% |
| 2026-08-31 | 60.4957 | -0.07% |
| 2026-08-30 | 60.5379 | -0.08% |
| 2026-08-29 | 60.5871 | — |
GBP to UAH conversion table
1 GBP59.4255 UAH
5 GBP297.1274 UAH
10 GBP594.2547 UAH
25 GBP1,485.6368 UAH
50 GBP2,971.2737 UAH
100 GBP5,942.5473 UAH
500 GBP29,712.737 UAH
1,000 GBP59,425.473 UAH
5,000 GBP297,127.37 UAH
10,000 GBP594,254.73 UAH
Get the GBP/UAH rate in your app
One GET request returns the latest GBP → UAH 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/UAH"fetch('https://rate-api.com/api/v1/pair/GBP/UAH', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} UAH`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/UAH",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} UAH")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/UAH');
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']} UAH\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "UAH"
},
"rate": 59.4255,
"timestamp": 1790470807,
"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
UAH to GBPUkrainian Hryvnia → British Pound0.016828Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.