Convert CAD to KES
Canadian Dollar → Kenyan Shilling
1 CAD = 91.592409 KES(1 KES = 0.0109179 CAD)
Currency converter
1 CAD =
91.5924 KES
CAD to KES: last 30 days
Over the last 30 days, 1 CAD traded between 91.5924 and 94.0059 KES, averaging 93.0404 KES. The CAD/KES rate is down 1.96% since 2026-08-28.
- 30-day high
- 94.0059
- 2026-09-09
- 30-day low
- 91.5924
- 2026-09-25
- 30-day average
- 93.0404
- Days with data: 30
- 30-day change
- -1.96%
- since 2026-08-28
94.0059
91.59242026-08-28 → 2026-09-26
| Date | 1 CAD in KES | Daily change |
|---|---|---|
| 2026-09-26 | 91.5924 | 0.00% |
| 2026-09-25 | 91.5924 | -0.16% |
| 2026-09-24 | 91.7364 | -0.16% |
| 2026-09-23 | 91.8868 | -0.37% |
| 2026-09-22 | 92.2262 | -0.25% |
| 2026-09-21 | 92.4582 | +0.01% |
| 2026-09-20 | 92.4467 | +0.02% |
| 2026-09-19 | 92.4285 | -0.17% |
| 2026-09-18 | 92.5839 | +0.00% |
| 2026-09-17 | 92.5822 | -0.46% |
| 2026-09-16 | 93.0093 | +0.01% |
| 2026-09-15 | 93.0037 | -0.22% |
| 2026-09-14 | 93.2122 | -0.19% |
| 2026-09-13 | 93.3926 | -0.01% |
| 2026-09-12 | 93.4049 | +0.02% |
| Date | 1 CAD in KES | Daily change |
|---|---|---|
| 2026-09-11 | 93.3879 | -0.31% |
| 2026-09-10 | 93.6813 | -0.35% |
| 2026-09-09 | 94.0059 | +0.27% |
| 2026-09-08 | 93.7559 | +0.11% |
| 2026-09-07 | 93.6532 | -0.14% |
| 2026-09-06 | 93.7824 | -0.01% |
| 2026-09-05 | 93.7951 | +0.00% |
| 2026-09-04 | 93.7943 | -0.05% |
| 2026-09-03 | 93.8432 | +0.96% |
| 2026-09-02 | 92.9551 | -0.32% |
| 2026-09-01 | 93.2567 | -0.22% |
| 2026-08-31 | 93.4586 | +0.03% |
| 2026-08-30 | 93.4306 | +0.00% |
| 2026-08-29 | 93.4291 | +0.00% |
| 2026-08-28 | 93.4273 | — |
CAD to KES conversion table
1 CAD91.5924 KES
5 CAD457.962 KES
10 CAD915.9241 KES
25 CAD2,289.8102 KES
50 CAD4,579.6204 KES
100 CAD9,159.2409 KES
500 CAD45,796.204 KES
1,000 CAD91,592.409 KES
5,000 CAD457,962.04 KES
10,000 CAD915,924.09 KES
Get the CAD/KES rate in your app
One GET request returns the latest CAD → KES 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/KES"fetch('https://rate-api.com/api/v1/pair/CAD/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/KES');
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']} KES\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "KES"
},
"rate": 91.5924,
"timestamp": 1790429439,
"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
KES to CADKenyan Shilling → Canadian Dollar0.010918Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.