Convert PEN to GBP
Peruvian Sol → British Pound
1 PEN = 0.221629 GBP(1 GBP = 4.512053 PEN)
Currency converter
1 PEN =
0.22163 GBP
PEN to GBP: last 30 days
Over the last 30 days, 1 PEN traded between 0.219 and 0.22421 GBP, averaging 0.2209 GBP. The PEN/GBP rate is up 0.87% since 2026-08-28.
- 30-day high
- 0.22421
- 2026-09-23
- 30-day low
- 0.219
- 2026-08-31
- 30-day average
- 0.2209
- Days with data: 30
- 30-day change
- +0.87%
- since 2026-08-28
0.22421
0.2192026-08-28 → 2026-09-26
| Date | 1 PEN in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.22163 | 0.00% |
| 2026-09-25 | 0.22163 | -0.77% |
| 2026-09-24 | 0.22336 | -0.38% |
| 2026-09-23 | 0.22421 | +0.97% |
| 2026-09-22 | 0.22206 | +0.40% |
| 2026-09-21 | 0.22118 | -0.39% |
| 2026-09-20 | 0.22206 | -0.01% |
| 2026-09-19 | 0.22207 | +0.03% |
| 2026-09-18 | 0.22201 | +0.28% |
| 2026-09-17 | 0.22138 | -0.07% |
| 2026-09-16 | 0.22152 | +0.37% |
| 2026-09-15 | 0.22071 | +0.11% |
| 2026-09-14 | 0.22047 | -0.10% |
| 2026-09-13 | 0.22068 | +0.01% |
| 2026-09-12 | 0.22067 | +0.01% |
| Date | 1 PEN in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.22065 | -0.07% |
| 2026-09-10 | 0.2208 | +0.42% |
| 2026-09-09 | 0.21989 | -0.04% |
| 2026-09-08 | 0.21997 | -0.14% |
| 2026-09-07 | 0.22028 | -0.03% |
| 2026-09-06 | 0.22035 | -0.04% |
| 2026-09-05 | 0.22045 | +0.03% |
| 2026-09-04 | 0.22037 | -0.04% |
| 2026-09-03 | 0.22045 | +0.03% |
| 2026-09-02 | 0.2204 | +0.31% |
| 2026-09-01 | 0.21972 | +0.33% |
| 2026-08-31 | 0.219 | -0.30% |
| 2026-08-30 | 0.21967 | +0.01% |
| 2026-08-29 | 0.21965 | -0.03% |
| 2026-08-28 | 0.21971 | — |
PEN to GBP conversion table
1 PEN0.22163 GBP
5 PEN1.1081 GBP
10 PEN2.2163 GBP
25 PEN5.5407 GBP
50 PEN11.0814 GBP
100 PEN22.1629 GBP
500 PEN110.8143 GBP
1,000 PEN221.6286 GBP
5,000 PEN1,108.1431 GBP
10,000 PEN2,216.2862 GBP
Get the PEN/GBP rate in your app
One GET request returns the latest PEN → 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/PEN/GBP"fetch('https://rate-api.com/api/v1/pair/PEN/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "GBP"
},
"rate": 0.2216,
"timestamp": 1790432151,
"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 PENBritish Pound → Peruvian Sol4.5121Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.