Convert CAD to NZD
Canadian Dollar → New Zealand Dollar
1 CAD = 1.246853 NZD(1 NZD = 0.802019 CAD)
Currency converter
1 CAD =
1.2469 NZD
CAD to NZD: last 30 days
Over the last 30 days, 1 CAD traded between 1.2142 and 1.2499 NZD, averaging 1.2377 NZD. The CAD/NZD rate is up 2.69% since 2026-08-28.
- 30-day high
- 1.2499
- 2026-09-18
- 30-day low
- 1.2142
- 2026-08-28
- 30-day average
- 1.2377
- Days with data: 30
- 30-day change
- +2.69%
- since 2026-08-28
1.2499
1.21422026-08-28 → 2026-09-26
| Date | 1 CAD in NZD | Daily change |
|---|---|---|
| 2026-09-26 | 1.2469 | 0.00% |
| 2026-09-25 | 1.2469 | -0.20% |
| 2026-09-24 | 1.2494 | +0.19% |
| 2026-09-23 | 1.2471 | +0.37% |
| 2026-09-22 | 1.2425 | -0.21% |
| 2026-09-21 | 1.2451 | -0.38% |
| 2026-09-20 | 1.2499 | 0.00% |
| 2026-09-19 | 1.2499 | 0.00% |
| 2026-09-18 | 1.2499 | +0.45% |
| 2026-09-17 | 1.2443 | -0.06% |
| 2026-09-16 | 1.245 | -0.22% |
| 2026-09-15 | 1.2478 | +0.02% |
| 2026-09-14 | 1.2476 | +0.64% |
| 2026-09-13 | 1.2396 | 0.00% |
| 2026-09-12 | 1.2396 | 0.00% |
| Date | 1 CAD in NZD | Daily change |
|---|---|---|
| 2026-09-11 | 1.2396 | -0.23% |
| 2026-09-10 | 1.2425 | +0.15% |
| 2026-09-09 | 1.2406 | +0.07% |
| 2026-09-08 | 1.2398 | +0.67% |
| 2026-09-07 | 1.2315 | -0.02% |
| 2026-09-06 | 1.2317 | 0.00% |
| 2026-09-05 | 1.2317 | 0.00% |
| 2026-09-04 | 1.2317 | -0.25% |
| 2026-09-03 | 1.2348 | +0.20% |
| 2026-09-02 | 1.2323 | +0.82% |
| 2026-09-01 | 1.2223 | +0.42% |
| 2026-08-31 | 1.2172 | +0.25% |
| 2026-08-30 | 1.2142 | 0.00% |
| 2026-08-29 | 1.2142 | 0.00% |
| 2026-08-28 | 1.2142 | — |
CAD to NZD conversion table
1 CAD1.2469 NZD
5 CAD6.2343 NZD
10 CAD12.4685 NZD
25 CAD31.1713 NZD
50 CAD62.3427 NZD
100 CAD124.6853 NZD
500 CAD623.4266 NZD
1,000 CAD1,246.8531 NZD
5,000 CAD6,234.2655 NZD
10,000 CAD12,468.531 NZD
Get the CAD/NZD rate in your app
One GET request returns the latest CAD → NZD 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/NZD"fetch('https://rate-api.com/api/v1/pair/CAD/NZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} NZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/NZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} NZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/NZD');
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']} NZD\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "NZD"
},
"rate": 1.2469,
"timestamp": 1790429396,
"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
NZD to CADNew Zealand Dollar → Canadian Dollar0.80202Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.