Convert GBP to BYN
British Pound → Belarusian Ruble
1 GBP = 4.034079 BYN(1 BYN = 0.247888 GBP)
Currency converter
1 GBP =
4.0341 BYN
GBP to BYN: last 30 days
Over the last 30 days, 1 GBP traded between 4.0187 and 4.17 BYN, averaging 4.1019 BYN. The GBP/BYN rate is down 1.37% since 2026-08-28.
- 30-day high
- 4.17
- 2026-09-02
- 30-day low
- 4.0187
- 2026-09-24
- 30-day average
- 4.1019
- Days with data: 30
- 30-day change
- -1.37%
- since 2026-08-28
4.17
4.01872026-08-28 → 2026-09-26
| Date | 1 GBP in BYN | Daily change |
|---|---|---|
| 2026-09-26 | 4.0341 | 0.00% |
| 2026-09-25 | 4.0341 | +0.38% |
| 2026-09-24 | 4.0187 | -0.31% |
| 2026-09-23 | 4.0313 | -0.04% |
| 2026-09-22 | 4.0331 | -0.39% |
| 2026-09-21 | 4.0488 | +0.43% |
| 2026-09-20 | 4.0315 | -0.17% |
| 2026-09-19 | 4.0382 | -0.44% |
| 2026-09-18 | 4.056 | -0.80% |
| 2026-09-17 | 4.0886 | +0.07% |
| 2026-09-16 | 4.0856 | -0.38% |
| 2026-09-15 | 4.1011 | +0.00% |
| 2026-09-14 | 4.101 | +0.06% |
| 2026-09-13 | 4.0984 | -0.10% |
| 2026-09-12 | 4.1027 | -0.14% |
| Date | 1 GBP in BYN | Daily change |
|---|---|---|
| 2026-09-11 | 4.1084 | -0.78% |
| 2026-09-10 | 4.1405 | -0.70% |
| 2026-09-09 | 4.1699 | +0.11% |
| 2026-09-08 | 4.1652 | -0.09% |
| 2026-09-07 | 4.1688 | +0.00% |
| 2026-09-06 | 4.1688 | -0.02% |
| 2026-09-05 | 4.1696 | +0.05% |
| 2026-09-04 | 4.1674 | +0.02% |
| 2026-09-03 | 4.1666 | -0.08% |
| 2026-09-02 | 4.17 | +0.55% |
| 2026-09-01 | 4.1472 | +1.07% |
| 2026-08-31 | 4.1035 | -0.38% |
| 2026-08-30 | 4.1191 | +0.50% |
| 2026-08-29 | 4.0987 | +0.21% |
| 2026-08-28 | 4.0902 | — |
GBP to BYN conversion table
1 GBP4.0341 BYN
5 GBP20.1704 BYN
10 GBP40.3408 BYN
25 GBP100.852 BYN
50 GBP201.7039 BYN
100 GBP403.4079 BYN
500 GBP2,017.0393 BYN
1,000 GBP4,034.0785 BYN
5,000 GBP20,170.393 BYN
10,000 GBP40,340.785 BYN
Get the GBP/BYN rate in your app
One GET request returns the latest GBP → BYN 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/BYN"fetch('https://rate-api.com/api/v1/pair/GBP/BYN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BYN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BYN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BYN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BYN');
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']} BYN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BYN"
},
"rate": 4.0341,
"timestamp": 1790437658,
"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
BYN to GBPBelarusian Ruble → British Pound0.24789Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.