Convert GBP to CAD
British Pound → Canadian Dollar
1 GBP = 1.874252 CAD(1 CAD = 0.533546 GBP)
Currency converter
1 GBP =
1.8743 CAD
GBP to CAD: last 30 days
Over the last 30 days, 1 GBP traded between 1.8615 and 1.8817 CAD, averaging 1.8727 CAD. The GBP/CAD rate is down 0.40% since 2026-08-28.
- 30-day high
- 1.8817
- 2026-08-28
- 30-day low
- 1.8615
- 2026-09-03
- 30-day average
- 1.8727
- Days with data: 30
- 30-day change
- -0.40%
- since 2026-08-28
1.8817
1.86152026-08-28 → 2026-09-26
| Date | 1 GBP in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 1.8743 | 0.00% |
| 2026-09-25 | 1.8743 | +0.43% |
| 2026-09-24 | 1.8662 | -0.23% |
| 2026-09-23 | 1.8705 | -0.33% |
| 2026-09-22 | 1.8767 | +0.05% |
| 2026-09-21 | 1.8758 | +0.34% |
| 2026-09-20 | 1.8695 | 0.00% |
| 2026-09-19 | 1.8695 | 0.00% |
| 2026-09-18 | 1.8695 | -0.13% |
| 2026-09-17 | 1.872 | -0.19% |
| 2026-09-16 | 1.8756 | -0.07% |
| 2026-09-15 | 1.8769 | +0.15% |
| 2026-09-14 | 1.874 | +0.11% |
| 2026-09-13 | 1.8719 | 0.00% |
| 2026-09-12 | 1.8719 | 0.00% |
| Date | 1 GBP in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 1.8719 | +0.21% |
| 2026-09-10 | 1.868 | +0.02% |
| 2026-09-09 | 1.8676 | -0.13% |
| 2026-09-08 | 1.87 | +0.00% |
| 2026-09-07 | 1.8699 | +0.15% |
| 2026-09-06 | 1.8671 | 0.00% |
| 2026-09-05 | 1.8671 | 0.00% |
| 2026-09-04 | 1.8671 | +0.30% |
| 2026-09-03 | 1.8615 | -0.85% |
| 2026-09-02 | 1.8775 | -0.09% |
| 2026-09-01 | 1.8792 | -0.05% |
| 2026-08-31 | 1.88 | -0.09% |
| 2026-08-30 | 1.8817 | 0.00% |
| 2026-08-29 | 1.8817 | 0.00% |
| 2026-08-28 | 1.8817 | — |
GBP to CAD conversion table
1 GBP1.8743 CAD
5 GBP9.3713 CAD
10 GBP18.7425 CAD
25 GBP46.8563 CAD
50 GBP93.7126 CAD
100 GBP187.4252 CAD
500 GBP937.1259 CAD
1,000 GBP1,874.2518 CAD
5,000 GBP9,371.2592 CAD
10,000 GBP18,742.518 CAD
Get the GBP/CAD rate in your app
One GET request returns the latest GBP → CAD 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/CAD"fetch('https://rate-api.com/api/v1/pair/GBP/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/CAD');
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']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "CAD"
},
"rate": 1.8743,
"timestamp": 1790429429,
"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
CAD to GBPCanadian Dollar → British Pound0.53355Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.