Convert GBP to PEN
British Pound → Peruvian Sol
1 GBP = 4.512053 PEN(1 PEN = 0.221629 GBP)
Currency converter
1 GBP =
4.5121 PEN
GBP to PEN: last 30 days
Over the last 30 days, 1 GBP traded between 4.4601 and 4.5662 PEN, averaging 4.5271 PEN. The GBP/PEN rate is down 0.87% since 2026-08-28.
- 30-day high
- 4.5662
- 2026-08-31
- 30-day low
- 4.4601
- 2026-09-23
- 30-day average
- 4.5271
- Days with data: 30
- 30-day change
- -0.87%
- since 2026-08-28
4.5662
4.46012026-08-28 → 2026-09-26
| Date | 1 GBP in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 4.5121 | 0.00% |
| 2026-09-25 | 4.5121 | +0.78% |
| 2026-09-24 | 4.4771 | +0.38% |
| 2026-09-23 | 4.4601 | -0.96% |
| 2026-09-22 | 4.5032 | -0.40% |
| 2026-09-21 | 4.5212 | +0.39% |
| 2026-09-20 | 4.5034 | +0.01% |
| 2026-09-19 | 4.5031 | -0.03% |
| 2026-09-18 | 4.5044 | -0.28% |
| 2026-09-17 | 4.5172 | +0.07% |
| 2026-09-16 | 4.5142 | -0.37% |
| 2026-09-15 | 4.5308 | -0.11% |
| 2026-09-14 | 4.5359 | +0.10% |
| 2026-09-13 | 4.5314 | -0.01% |
| 2026-09-12 | 4.5317 | -0.01% |
| Date | 1 GBP in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 4.532 | +0.07% |
| 2026-09-10 | 4.5289 | -0.42% |
| 2026-09-09 | 4.5478 | +0.04% |
| 2026-09-08 | 4.546 | +0.14% |
| 2026-09-07 | 4.5397 | +0.03% |
| 2026-09-06 | 4.5382 | +0.04% |
| 2026-09-05 | 4.5363 | -0.03% |
| 2026-09-04 | 4.5378 | +0.04% |
| 2026-09-03 | 4.5361 | -0.03% |
| 2026-09-02 | 4.5372 | -0.31% |
| 2026-09-01 | 4.5512 | -0.33% |
| 2026-08-31 | 4.5662 | +0.30% |
| 2026-08-30 | 4.5524 | -0.01% |
| 2026-08-29 | 4.5527 | +0.03% |
| 2026-08-28 | 4.5515 | — |
GBP to PEN conversion table
1 GBP4.5121 PEN
5 GBP22.5603 PEN
10 GBP45.1205 PEN
25 GBP112.8013 PEN
50 GBP225.6026 PEN
100 GBP451.2053 PEN
500 GBP2,256.0263 PEN
1,000 GBP4,512.0526 PEN
5,000 GBP22,560.263 PEN
10,000 GBP45,120.526 PEN
Get the GBP/PEN rate in your app
One GET request returns the latest GBP → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/GBP/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "PEN"
},
"rate": 4.5121,
"timestamp": 1790429395,
"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
PEN to GBPPeruvian Sol → British Pound0.22163Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.