Convert GBP to PLN
British Pound → Polish Złoty
1 GBP = 5.08083 PLN(1 PLN = 0.196818 GBP)
Currency converter
1 GBP =
5.0808 PLN
GBP to PLN: last 30 days
Over the last 30 days, 1 GBP traded between 5.0181 and 5.0965 PLN, averaging 5.0559 PLN. The GBP/PLN rate is up 0.43% since 2026-08-28.
- 30-day high
- 5.0965
- 2026-09-24
- 30-day low
- 5.0181
- 2026-09-07
- 30-day average
- 5.0559
- Days with data: 30
- 30-day change
- +0.43%
- since 2026-08-28
5.0965
5.01812026-08-28 → 2026-09-26
| Date | 1 GBP in PLN | Daily change |
|---|---|---|
| 2026-09-26 | 5.0808 | 0.00% |
| 2026-09-25 | 5.0808 | -0.31% |
| 2026-09-24 | 5.0965 | +0.09% |
| 2026-09-23 | 5.0919 | +0.46% |
| 2026-09-22 | 5.0688 | -0.11% |
| 2026-09-21 | 5.0746 | -0.12% |
| 2026-09-20 | 5.0809 | 0.00% |
| 2026-09-19 | 5.0809 | 0.00% |
| 2026-09-18 | 5.0809 | +0.07% |
| 2026-09-17 | 5.0774 | +0.14% |
| 2026-09-16 | 5.0703 | -0.02% |
| 2026-09-15 | 5.0713 | -0.02% |
| 2026-09-14 | 5.0723 | +0.64% |
| 2026-09-13 | 5.0398 | 0.00% |
| 2026-09-12 | 5.0398 | 0.00% |
| Date | 1 GBP in PLN | Daily change |
|---|---|---|
| 2026-09-11 | 5.0398 | +0.19% |
| 2026-09-10 | 5.0305 | +0.13% |
| 2026-09-09 | 5.0237 | -0.24% |
| 2026-09-08 | 5.036 | +0.36% |
| 2026-09-07 | 5.0181 | -0.10% |
| 2026-09-06 | 5.0231 | 0.00% |
| 2026-09-05 | 5.0231 | 0.00% |
| 2026-09-04 | 5.0231 | -0.09% |
| 2026-09-03 | 5.0275 | -0.21% |
| 2026-09-02 | 5.0384 | -0.36% |
| 2026-09-01 | 5.0567 | +0.07% |
| 2026-08-31 | 5.0532 | -0.11% |
| 2026-08-30 | 5.0589 | 0.00% |
| 2026-08-29 | 5.0589 | 0.00% |
| 2026-08-28 | 5.0589 | — |
GBP to PLN conversion table
1 GBP5.0808 PLN
5 GBP25.4041 PLN
10 GBP50.8083 PLN
25 GBP127.0207 PLN
50 GBP254.0415 PLN
100 GBP508.083 PLN
500 GBP2,540.4149 PLN
1,000 GBP5,080.8298 PLN
5,000 GBP25,404.149 PLN
10,000 GBP50,808.298 PLN
Get the GBP/PLN rate in your app
One GET request returns the latest GBP → PLN 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/PLN"fetch('https://rate-api.com/api/v1/pair/GBP/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/PLN');
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']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "PLN"
},
"rate": 5.0808,
"timestamp": 1790429420,
"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
PLN to GBPPolish Złoty → British Pound0.19682Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.