Convert CAD to GHS
Canadian Dollar → Ghanaian Cedi
1 CAD = 8.213934 GHS(1 GHS = 0.121744 CAD)
Currency converter
1 CAD =
8.2139 GHS
CAD to GHS: last 30 days
Over the last 30 days, 1 CAD traded between 8.0946 and 8.2871 GHS, averaging 8.2095 GHS. The CAD/GHS rate is up 1.41% since 2026-08-29.
- 30-day high
- 8.2871
- 2026-09-09
- 30-day low
- 8.0946
- 2026-08-31
- 30-day average
- 8.2095
- Days with data: 30
- 30-day change
- +1.41%
- since 2026-08-29
8.2871
8.09462026-08-29 → 2026-09-27
| Date | 1 CAD in GHS | Daily change |
|---|---|---|
| 2026-09-27 | 8.2139 | 0.00% |
| 2026-09-26 | 8.2139 | +0.19% |
| 2026-09-25 | 8.1988 | -0.09% |
| 2026-09-24 | 8.2059 | +0.09% |
| 2026-09-23 | 8.1986 | -0.01% |
| 2026-09-22 | 8.1993 | -0.28% |
| 2026-09-21 | 8.2226 | +0.04% |
| 2026-09-20 | 8.2191 | -0.02% |
| 2026-09-19 | 8.2204 | +0.07% |
| 2026-09-18 | 8.2147 | -0.01% |
| 2026-09-17 | 8.2154 | -0.17% |
| 2026-09-16 | 8.2296 | -0.06% |
| 2026-09-15 | 8.2346 | -0.14% |
| 2026-09-14 | 8.2464 | -0.10% |
| 2026-09-13 | 8.2545 | -0.17% |
| Date | 1 CAD in GHS | Daily change |
|---|---|---|
| 2026-09-12 | 8.2688 | -0.00% |
| 2026-09-11 | 8.269 | -0.06% |
| 2026-09-10 | 8.2741 | -0.16% |
| 2026-09-09 | 8.2871 | +0.35% |
| 2026-09-08 | 8.2579 | +0.27% |
| 2026-09-07 | 8.2353 | -0.09% |
| 2026-09-06 | 8.2431 | -0.08% |
| 2026-09-05 | 8.2498 | +0.21% |
| 2026-09-04 | 8.2322 | +0.54% |
| 2026-09-03 | 8.1881 | +1.15% |
| 2026-09-02 | 8.0949 | -0.13% |
| 2026-09-01 | 8.1051 | +0.13% |
| 2026-08-31 | 8.0946 | -0.04% |
| 2026-08-30 | 8.098 | -0.02% |
| 2026-08-29 | 8.0995 | — |
CAD to GHS conversion table
1 CAD8.2139 GHS
5 CAD41.0697 GHS
10 CAD82.1393 GHS
25 CAD205.3483 GHS
50 CAD410.6967 GHS
100 CAD821.3934 GHS
500 CAD4,106.9668 GHS
1,000 CAD8,213.9336 GHS
5,000 CAD41,069.668 GHS
10,000 CAD82,139.336 GHS
Get the CAD/GHS rate in your app
One GET request returns the latest CAD → GHS 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/GHS"fetch('https://rate-api.com/api/v1/pair/CAD/GHS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} GHS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/GHS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} GHS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/GHS');
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']} GHS\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "GHS"
},
"rate": 8.2139,
"timestamp": 1790470815,
"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
GHS to CADGhanaian Cedi → Canadian Dollar0.12174Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.