Convert CAD to KWD
Canadian Dollar → Kuwaiti Dinar
1 CAD = 0.218365 KWD(1 KWD = 4.579483 CAD)
Currency converter
1 CAD =
0.21837 KWD
CAD to KWD: last 30 days
Over the last 30 days, 1 CAD traded between 0.21837 and 0.22432 KWD, averaging 0.22182 KWD. The CAD/KWD rate is down 2.04% since 2026-08-28.
- 30-day high
- 0.22432
- 2026-09-09
- 30-day low
- 0.21837
- 2026-09-25
- 30-day average
- 0.22182
- Days with data: 30
- 30-day change
- -2.04%
- since 2026-08-28
0.22432
0.218372026-08-28 → 2026-09-26
| Date | 1 CAD in KWD | Daily change |
|---|---|---|
| 2026-09-26 | 0.21837 | 0.00% |
| 2026-09-25 | 0.21837 | -0.30% |
| 2026-09-24 | 0.21902 | -0.03% |
| 2026-09-23 | 0.21909 | -0.27% |
| 2026-09-22 | 0.21969 | -0.20% |
| 2026-09-21 | 0.22011 | +0.01% |
| 2026-09-20 | 0.22009 | +0.04% |
| 2026-09-19 | 0.21999 | +0.17% |
| 2026-09-18 | 0.21963 | -0.46% |
| 2026-09-17 | 0.22064 | -0.39% |
| 2026-09-16 | 0.2215 | -0.14% |
| 2026-09-15 | 0.22181 | -0.18% |
| 2026-09-14 | 0.22223 | -0.00% |
| 2026-09-13 | 0.22223 | -0.13% |
| 2026-09-12 | 0.22252 | -0.03% |
| Date | 1 CAD in KWD | Daily change |
|---|---|---|
| 2026-09-11 | 0.22258 | -0.37% |
| 2026-09-10 | 0.2234 | -0.41% |
| 2026-09-09 | 0.22432 | +0.28% |
| 2026-09-08 | 0.22369 | +0.04% |
| 2026-09-07 | 0.22361 | -0.12% |
| 2026-09-06 | 0.22387 | -0.02% |
| 2026-09-05 | 0.22391 | +0.02% |
| 2026-09-04 | 0.22387 | -0.08% |
| 2026-09-03 | 0.22406 | +0.88% |
| 2026-09-02 | 0.2221 | -0.18% |
| 2026-09-01 | 0.22251 | +0.03% |
| 2026-08-31 | 0.22244 | -0.23% |
| 2026-08-30 | 0.22297 | +0.00% |
| 2026-08-29 | 0.22296 | +0.03% |
| 2026-08-28 | 0.2229 | — |
CAD to KWD conversion table
1 CAD0.21837 KWD
5 CAD1.0918 KWD
10 CAD2.1837 KWD
25 CAD5.4591 KWD
50 CAD10.9183 KWD
100 CAD21.8365 KWD
500 CAD109.1826 KWD
1,000 CAD218.3653 KWD
5,000 CAD1,091.8263 KWD
10,000 CAD2,183.6525 KWD
Get the CAD/KWD rate in your app
One GET request returns the latest CAD → KWD 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/KWD"fetch('https://rate-api.com/api/v1/pair/CAD/KWD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} KWD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/KWD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} KWD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/KWD');
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']} KWD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "KWD"
},
"rate": 0.2184,
"timestamp": 1790429428,
"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
KWD to CADKuwaiti Dinar → Canadian Dollar4.5795Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.