Convert CAD to HKD
Canadian Dollar → Hong Kong Dollar
1 CAD = 5.546289 HKD(1 HKD = 0.180301 CAD)
Currency converter
1 CAD =
5.5463 HKD
CAD to HKD: last 30 days
Over the last 30 days, 1 CAD traded between 5.5463 and 5.696 HKD, averaging 5.6349 HKD. The CAD/HKD rate is down 1.99% since 2026-08-28.
- 30-day high
- 5.696
- 2026-09-09
- 30-day low
- 5.5463
- 2026-09-25
- 30-day average
- 5.6349
- Days with data: 30
- 30-day change
- -1.99%
- since 2026-08-28
5.696
5.54632026-08-28 → 2026-09-26
| Date | 1 CAD in HKD | Daily change |
|---|---|---|
| 2026-09-26 | 5.5463 | 0.00% |
| 2026-09-25 | 5.5463 | -0.16% |
| 2026-09-24 | 5.5554 | -0.21% |
| 2026-09-23 | 5.5673 | -0.31% |
| 2026-09-22 | 5.5849 | -0.31% |
| 2026-09-21 | 5.6023 | +0.05% |
| 2026-09-20 | 5.5995 | 0.00% |
| 2026-09-19 | 5.5995 | 0.00% |
| 2026-09-18 | 5.5995 | -0.11% |
| 2026-09-17 | 5.6057 | -0.40% |
| 2026-09-16 | 5.628 | -0.13% |
| 2026-09-15 | 5.6354 | -0.22% |
| 2026-09-14 | 5.648 | -0.19% |
| 2026-09-13 | 5.6588 | 0.00% |
| 2026-09-12 | 5.6588 | 0.00% |
| Date | 1 CAD in HKD | Daily change |
|---|---|---|
| 2026-09-11 | 5.6588 | -0.29% |
| 2026-09-10 | 5.6754 | -0.36% |
| 2026-09-09 | 5.696 | +0.28% |
| 2026-09-08 | 5.68 | +0.12% |
| 2026-09-07 | 5.6731 | -0.15% |
| 2026-09-06 | 5.6814 | 0.00% |
| 2026-09-05 | 5.6814 | 0.00% |
| 2026-09-04 | 5.6814 | -0.07% |
| 2026-09-03 | 5.6855 | +0.95% |
| 2026-09-02 | 5.632 | -0.25% |
| 2026-09-01 | 5.6459 | +0.03% |
| 2026-08-31 | 5.6445 | -0.25% |
| 2026-08-30 | 5.6587 | 0.00% |
| 2026-08-29 | 5.6587 | 0.00% |
| 2026-08-28 | 5.6587 | — |
CAD to HKD conversion table
1 CAD5.5463 HKD
5 CAD27.7314 HKD
10 CAD55.4629 HKD
25 CAD138.6572 HKD
50 CAD277.3144 HKD
100 CAD554.6289 HKD
500 CAD2,773.1444 HKD
1,000 CAD5,546.2888 HKD
5,000 CAD27,731.444 HKD
10,000 CAD55,462.888 HKD
Get the CAD/HKD rate in your app
One GET request returns the latest CAD → HKD 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/HKD"fetch('https://rate-api.com/api/v1/pair/CAD/HKD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} HKD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/HKD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} HKD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/HKD');
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']} HKD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "HKD"
},
"rate": 5.5463,
"timestamp": 1790447457,
"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
HKD to CADHong Kong Dollar → Canadian Dollar0.1803Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.