Convert PLN to GBP
Polish Złoty → British Pound
1 PLN = 0.196818 GBP(1 GBP = 5.08083 PLN)
Currency converter
1 PLN =
0.19682 GBP
PLN to GBP: last 30 days
Over the last 30 days, 1 PLN traded between 0.19621 and 0.19928 GBP, averaging 0.19779 GBP. The PLN/GBP rate is down 0.43% since 2026-08-28.
- 30-day high
- 0.19928
- 2026-09-07
- 30-day low
- 0.19621
- 2026-09-24
- 30-day average
- 0.19779
- Days with data: 30
- 30-day change
- -0.43%
- since 2026-08-28
0.19928
0.196212026-08-28 → 2026-09-26
| Date | 1 PLN in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.19682 | 0.00% |
| 2026-09-25 | 0.19682 | +0.31% |
| 2026-09-24 | 0.19621 | -0.09% |
| 2026-09-23 | 0.19639 | -0.45% |
| 2026-09-22 | 0.19728 | +0.11% |
| 2026-09-21 | 0.19706 | +0.12% |
| 2026-09-20 | 0.19681 | 0.00% |
| 2026-09-19 | 0.19681 | 0.00% |
| 2026-09-18 | 0.19681 | -0.07% |
| 2026-09-17 | 0.19695 | -0.14% |
| 2026-09-16 | 0.19723 | +0.02% |
| 2026-09-15 | 0.19719 | +0.02% |
| 2026-09-14 | 0.19715 | -0.64% |
| 2026-09-13 | 0.19842 | 0.00% |
| 2026-09-12 | 0.19842 | 0.00% |
| Date | 1 PLN in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.19842 | -0.19% |
| 2026-09-10 | 0.19879 | -0.13% |
| 2026-09-09 | 0.19905 | +0.24% |
| 2026-09-08 | 0.19857 | -0.35% |
| 2026-09-07 | 0.19928 | +0.10% |
| 2026-09-06 | 0.19908 | 0.00% |
| 2026-09-05 | 0.19908 | 0.00% |
| 2026-09-04 | 0.19908 | +0.09% |
| 2026-09-03 | 0.1989 | +0.22% |
| 2026-09-02 | 0.19848 | +0.36% |
| 2026-09-01 | 0.19776 | -0.07% |
| 2026-08-31 | 0.19789 | +0.11% |
| 2026-08-30 | 0.19767 | 0.00% |
| 2026-08-29 | 0.19767 | 0.00% |
| 2026-08-28 | 0.19767 | — |
PLN to GBP conversion table
1 PLN0.19682 GBP
5 PLN0.98409 GBP
10 PLN1.9682 GBP
25 PLN4.9205 GBP
50 PLN9.8409 GBP
100 PLN19.6818 GBP
500 PLN98.4091 GBP
1,000 PLN196.8182 GBP
5,000 PLN984.0912 GBP
10,000 PLN1,968.1824 GBP
Get the PLN/GBP rate in your app
One GET request returns the latest PLN → GBP 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/PLN/GBP"fetch('https://rate-api.com/api/v1/pair/PLN/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PLN = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PLN/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PLN = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PLN/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PLN = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "PLN",
"to": "GBP"
},
"rate": 0.1968,
"timestamp": 1790435131,
"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
GBP to PLNBritish Pound → Polish Złoty5.0808Convert PLN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.