Convert GHS to CAD
Ghanaian Cedi → Canadian Dollar
1 GHS = 0.12197 CAD(1 CAD = 8.198765 GHS)
Currency converter
1 GHS =
0.12197 CAD
GHS to CAD: last 30 days
Over the last 30 days, 1 GHS traded between 0.12067 and 0.12354 CAD, averaging 0.12188 CAD. The GHS/CAD rate is down 1.21% since 2026-08-28.
- 30-day high
- 0.12354
- 2026-08-31
- 30-day low
- 0.12067
- 2026-09-09
- 30-day average
- 0.12188
- Days with data: 30
- 30-day change
- -1.21%
- since 2026-08-28
0.12354
0.120672026-08-28 → 2026-09-26
| Date | 1 GHS in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.12197 | 0.00% |
| 2026-09-25 | 0.12197 | +0.09% |
| 2026-09-24 | 0.12186 | -0.09% |
| 2026-09-23 | 0.12197 | +0.01% |
| 2026-09-22 | 0.12196 | +0.28% |
| 2026-09-21 | 0.12162 | -0.04% |
| 2026-09-20 | 0.12167 | +0.02% |
| 2026-09-19 | 0.12165 | -0.07% |
| 2026-09-18 | 0.12173 | +0.01% |
| 2026-09-17 | 0.12172 | +0.17% |
| 2026-09-16 | 0.12151 | +0.06% |
| 2026-09-15 | 0.12144 | +0.14% |
| 2026-09-14 | 0.12126 | +0.10% |
| 2026-09-13 | 0.12115 | +0.17% |
| 2026-09-12 | 0.12094 | +0.00% |
| Date | 1 GHS in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.12093 | +0.06% |
| 2026-09-10 | 0.12086 | +0.16% |
| 2026-09-09 | 0.12067 | -0.35% |
| 2026-09-08 | 0.1211 | -0.27% |
| 2026-09-07 | 0.12143 | +0.09% |
| 2026-09-06 | 0.12131 | +0.08% |
| 2026-09-05 | 0.12122 | -0.21% |
| 2026-09-04 | 0.12147 | -0.54% |
| 2026-09-03 | 0.12213 | -1.14% |
| 2026-09-02 | 0.12353 | +0.13% |
| 2026-09-01 | 0.12338 | -0.13% |
| 2026-08-31 | 0.12354 | +0.04% |
| 2026-08-30 | 0.12349 | +0.02% |
| 2026-08-29 | 0.12346 | -0.00% |
| 2026-08-28 | 0.12347 | — |
GHS to CAD conversion table
1 GHS0.12197 CAD
5 GHS0.60985 CAD
10 GHS1.2197 CAD
25 GHS3.0492 CAD
50 GHS6.0985 CAD
100 GHS12.197 CAD
500 GHS60.9848 CAD
1,000 GHS121.9696 CAD
5,000 GHS609.8479 CAD
10,000 GHS1,219.6959 CAD
Get the GHS/CAD rate in your app
One GET request returns the latest GHS → 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/GHS/CAD"fetch('https://rate-api.com/api/v1/pair/GHS/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GHS = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GHS/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GHS = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GHS/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GHS = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "GHS",
"to": "CAD"
},
"rate": 0.122,
"timestamp": 1790437623,
"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 GHSCanadian Dollar → Ghanaian Cedi8.1988Convert GHS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.