Convert CAD to ZAR
Canadian Dollar → South African Rand
1 CAD = 11.520928 ZAR(1 ZAR = 0.0867986 CAD)
Currency converter
1 CAD =
11.5209 ZAR
CAD to ZAR: last 30 days
Over the last 30 days, 1 CAD traded between 11.5209 and 11.701 ZAR, averaging 11.6089 ZAR. The CAD/ZAR rate is down 0.25% since 2026-08-28.
- 30-day high
- 11.701
- 2026-09-14
- 30-day low
- 11.5209
- 2026-09-25
- 30-day average
- 11.6089
- Days with data: 30
- 30-day change
- -0.25%
- since 2026-08-28
11.701
11.52092026-08-28 → 2026-09-26
| Date | 1 CAD in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 11.5209 | 0.00% |
| 2026-09-25 | 11.5209 | -1.05% |
| 2026-09-24 | 11.643 | +0.35% |
| 2026-09-23 | 11.6027 | +0.33% |
| 2026-09-22 | 11.5649 | -0.39% |
| 2026-09-21 | 11.6105 | -0.04% |
| 2026-09-20 | 11.6148 | 0.00% |
| 2026-09-19 | 11.6148 | 0.00% |
| 2026-09-18 | 11.6148 | +0.02% |
| 2026-09-17 | 11.6131 | -0.50% |
| 2026-09-16 | 11.6709 | -0.17% |
| 2026-09-15 | 11.6905 | -0.09% |
| 2026-09-14 | 11.701 | +0.35% |
| 2026-09-13 | 11.6602 | 0.00% |
| 2026-09-12 | 11.6602 | 0.00% |
| Date | 1 CAD in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 11.6602 | -0.23% |
| 2026-09-10 | 11.6869 | +0.32% |
| 2026-09-09 | 11.6501 | +0.37% |
| 2026-09-08 | 11.6074 | +0.31% |
| 2026-09-07 | 11.5714 | +0.01% |
| 2026-09-06 | 11.5704 | 0.00% |
| 2026-09-05 | 11.5704 | 0.00% |
| 2026-09-04 | 11.5704 | -0.49% |
| 2026-09-03 | 11.628 | +0.61% |
| 2026-09-02 | 11.5579 | -0.64% |
| 2026-09-01 | 11.6329 | +0.23% |
| 2026-08-31 | 11.6062 | +0.48% |
| 2026-08-30 | 11.5503 | 0.00% |
| 2026-08-29 | 11.5503 | 0.00% |
| 2026-08-28 | 11.5503 | — |
CAD to ZAR conversion table
1 CAD11.5209 ZAR
5 CAD57.6046 ZAR
10 CAD115.2093 ZAR
25 CAD288.0232 ZAR
50 CAD576.0464 ZAR
100 CAD1,152.0928 ZAR
500 CAD5,760.4638 ZAR
1,000 CAD11,520.928 ZAR
5,000 CAD57,604.638 ZAR
10,000 CAD115,209.28 ZAR
Get the CAD/ZAR rate in your app
One GET request returns the latest CAD → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/CAD/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "ZAR"
},
"rate": 11.5209,
"timestamp": 1790429358,
"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
ZAR to CADSouth African Rand → Canadian Dollar0.086799Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.