Convert CAD to GBP
Canadian Dollar → British Pound
1 CAD = 0.533546 GBP(1 GBP = 1.874252 CAD)
Currency converter
1 CAD =
0.53355 GBP
CAD to GBP: last 30 days
Over the last 30 days, 1 CAD traded between 0.53143 and 0.5372 GBP, averaging 0.53406 GBP. The CAD/GBP rate is up 0.40% since 2026-08-29.
- 30-day high
- 0.5372
- 2026-09-03
- 30-day low
- 0.53143
- 2026-08-29
- 30-day average
- 0.53406
- Days with data: 30
- 30-day change
- +0.40%
- since 2026-08-29
0.5372
0.531432026-08-29 → 2026-09-27
| Date | 1 CAD in GBP | Daily change |
|---|---|---|
| 2026-09-27 | 0.53355 | 0.00% |
| 2026-09-26 | 0.53355 | 0.00% |
| 2026-09-25 | 0.53355 | -0.43% |
| 2026-09-24 | 0.53584 | +0.23% |
| 2026-09-23 | 0.53461 | +0.33% |
| 2026-09-22 | 0.53284 | -0.05% |
| 2026-09-21 | 0.5331 | -0.33% |
| 2026-09-20 | 0.5349 | 0.00% |
| 2026-09-19 | 0.5349 | 0.00% |
| 2026-09-18 | 0.5349 | +0.13% |
| 2026-09-17 | 0.53418 | +0.19% |
| 2026-09-16 | 0.53316 | +0.07% |
| 2026-09-15 | 0.5328 | -0.15% |
| 2026-09-14 | 0.53362 | -0.11% |
| 2026-09-13 | 0.5342 | 0.00% |
| Date | 1 CAD in GBP | Daily change |
|---|---|---|
| 2026-09-12 | 0.5342 | 0.00% |
| 2026-09-11 | 0.5342 | -0.21% |
| 2026-09-10 | 0.53534 | -0.02% |
| 2026-09-09 | 0.53544 | +0.13% |
| 2026-09-08 | 0.53477 | -0.00% |
| 2026-09-07 | 0.53478 | -0.15% |
| 2026-09-06 | 0.53558 | 0.00% |
| 2026-09-05 | 0.53558 | 0.00% |
| 2026-09-04 | 0.53558 | -0.30% |
| 2026-09-03 | 0.5372 | +0.86% |
| 2026-09-02 | 0.53262 | +0.09% |
| 2026-09-01 | 0.53214 | +0.05% |
| 2026-08-31 | 0.5319 | +0.09% |
| 2026-08-30 | 0.53143 | 0.00% |
| 2026-08-29 | 0.53143 | — |
CAD to GBP conversion table
1 CAD0.53355 GBP
5 CAD2.6677 GBP
10 CAD5.3355 GBP
25 CAD13.3387 GBP
50 CAD26.6773 GBP
100 CAD53.3546 GBP
500 CAD266.7731 GBP
1,000 CAD533.5462 GBP
5,000 CAD2,667.7311 GBP
10,000 CAD5,335.4623 GBP
Get the CAD/GBP rate in your app
One GET request returns the latest CAD → 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/CAD/GBP"fetch('https://rate-api.com/api/v1/pair/CAD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/GBP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CAD = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "GBP"
},
"rate": 0.5335,
"timestamp": 1790470840,
"date": "2026-09-27"
}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 CADBritish Pound → Canadian Dollar1.8743Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.