Convert GBP to CLP
British Pound → Chilean Peso
1 GBP = 1,276.5257 CLP(1 CLP = 0.000783376 GBP)
Currency converter
1 GBP =
1,276.5257 CLP
GBP to CLP: last 30 days
Over the last 30 days, 1 GBP traded between 1,253.5275 and 1,288.0704 CLP, averaging 1,269.449 CLP. The GBP/CLP rate is up 1.44% since 2026-08-28.
- 30-day high
- 1,288.0704
- 2026-09-15
- 30-day low
- 1,253.5275
- 2026-09-10
- 30-day average
- 1,269.449
- Days with data: 30
- 30-day change
- +1.44%
- since 2026-08-28
1,288.0704
1,253.52752026-08-28 → 2026-09-26
| Date | 1 GBP in CLP | Daily change |
|---|---|---|
| 2026-09-26 | 1,276.5257 | 0.00% |
| 2026-09-25 | 1,276.5257 | +0.24% |
| 2026-09-24 | 1,273.4104 | +1.28% |
| 2026-09-23 | 1,257.2564 | -0.74% |
| 2026-09-22 | 1,266.6681 | -1.50% |
| 2026-09-21 | 1,285.9707 | +0.44% |
| 2026-09-20 | 1,280.367 | +0.01% |
| 2026-09-19 | 1,280.1913 | -0.11% |
| 2026-09-18 | 1,281.6025 | +0.15% |
| 2026-09-17 | 1,279.6526 | -0.35% |
| 2026-09-16 | 1,284.1319 | -0.31% |
| 2026-09-15 | 1,288.0704 | +1.60% |
| 2026-09-14 | 1,267.8453 | -0.41% |
| 2026-09-13 | 1,273.0691 | +0.01% |
| 2026-09-12 | 1,272.966 | +0.15% |
| Date | 1 GBP in CLP | Daily change |
|---|---|---|
| 2026-09-11 | 1,271.0209 | +1.40% |
| 2026-09-10 | 1,253.5275 | -0.09% |
| 2026-09-09 | 1,254.6874 | -0.86% |
| 2026-09-08 | 1,265.5468 | +0.33% |
| 2026-09-07 | 1,261.4164 | -0.23% |
| 2026-09-06 | 1,264.3806 | +0.00% |
| 2026-09-05 | 1,264.3604 | +0.20% |
| 2026-09-04 | 1,261.807 | -0.31% |
| 2026-09-03 | 1,265.7579 | +0.28% |
| 2026-09-02 | 1,262.2041 | -0.19% |
| 2026-09-01 | 1,264.6696 | +0.27% |
| 2026-08-31 | 1,261.2655 | -0.30% |
| 2026-08-30 | 1,265.0946 | +0.00% |
| 2026-08-29 | 1,265.0498 | +0.53% |
| 2026-08-28 | 1,258.4281 | — |
GBP to CLP conversion table
1 GBP1,276.5257 CLP
5 GBP6,382.6283 CLP
10 GBP12,765.257 CLP
25 GBP31,913.142 CLP
50 GBP63,826.283 CLP
100 GBP127,652.57 CLP
500 GBP638,262.83 CLP
1,000 GBP1,276,525.7 CLP
5,000 GBP6,382,628.3 CLP
10,000 GBP12,765,257 CLP
Get the GBP/CLP rate in your app
One GET request returns the latest GBP → CLP 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/CLP"fetch('https://rate-api.com/api/v1/pair/GBP/CLP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CLP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CLP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CLP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CLP');
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']} CLP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CLP"
},
"rate": 1276.5257,
"timestamp": 1790437659,
"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
CLP to GBPChilean Peso → British Pound0.00078338Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.