Convert GBP to COP
British Pound → Colombian Peso
1 GBP = 4,382.3725 COP(1 COP = 0.000228187 GBP)
Currency converter
1 GBP =
4,382.3725 COP
GBP to COP: last 30 days
Over the last 30 days, 1 GBP traded between 4,155.6778 and 4,401.6092 COP, averaging 4,262.4044 COP. The GBP/COP rate is up 2.20% since 2026-08-28.
- 30-day high
- 4,401.6092
- 2026-09-24
- 30-day low
- 4,155.6778
- 2026-09-13
- 30-day average
- 4,262.4044
- Days with data: 30
- 30-day change
- +2.20%
- since 2026-08-28
4,401.6092
4,155.67782026-08-28 → 2026-09-26
| Date | 1 GBP in COP | Daily change |
|---|---|---|
| 2026-09-26 | 4,382.3725 | 0.00% |
| 2026-09-25 | 4,382.3725 | -0.44% |
| 2026-09-24 | 4,401.6092 | +1.56% |
| 2026-09-23 | 4,333.9097 | +1.34% |
| 2026-09-22 | 4,276.6685 | +0.49% |
| 2026-09-21 | 4,255.7574 | +0.36% |
| 2026-09-20 | 4,240.4402 | -0.14% |
| 2026-09-19 | 4,246.4021 | +0.42% |
| 2026-09-18 | 4,228.6778 | +0.81% |
| 2026-09-17 | 4,194.6356 | -0.11% |
| 2026-09-16 | 4,199.0588 | +0.21% |
| 2026-09-15 | 4,190.2906 | +0.43% |
| 2026-09-14 | 4,172.3458 | +0.40% |
| 2026-09-13 | 4,155.6778 | -0.15% |
| 2026-09-12 | 4,161.7306 | -0.70% |
| Date | 1 GBP in COP | Daily change |
|---|---|---|
| 2026-09-11 | 4,191.1337 | -0.16% |
| 2026-09-10 | 4,197.9655 | -0.61% |
| 2026-09-09 | 4,223.596 | -0.38% |
| 2026-09-08 | 4,239.7167 | +0.05% |
| 2026-09-07 | 4,237.7088 | +0.02% |
| 2026-09-06 | 4,236.9535 | -0.06% |
| 2026-09-05 | 4,239.5943 | -0.41% |
| 2026-09-04 | 4,257.084 | -0.23% |
| 2026-09-03 | 4,267.1049 | -0.04% |
| 2026-09-02 | 4,268.9323 | -2.10% |
| 2026-09-01 | 4,360.5979 | +0.53% |
| 2026-08-31 | 4,337.4259 | -0.30% |
| 2026-08-30 | 4,350.4955 | -0.08% |
| 2026-08-29 | 4,353.9192 | +1.54% |
| 2026-08-28 | 4,287.9544 | — |
GBP to COP conversion table
1 GBP4,382.3725 COP
5 GBP21,911.863 COP
10 GBP43,823.725 COP
25 GBP109,559.31 COP
50 GBP219,118.63 COP
100 GBP438,237.25 COP
500 GBP2,191,186.3 COP
1,000 GBP4,382,372.5 COP
5,000 GBP21,911,863 COP
10,000 GBP43,823,725 COP
Get the GBP/COP rate in your app
One GET request returns the latest GBP → COP 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/COP"fetch('https://rate-api.com/api/v1/pair/GBP/COP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} COP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/COP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} COP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/COP');
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']} COP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "COP"
},
"rate": 4382.3725,
"timestamp": 1790429343,
"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
COP to GBPColombian Peso → British Pound0.00022819Convert GBP to other currencies
Convert other currencies to COP
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.