Convert CAD to ANG
Canadian Dollar → Netherlands Antillean Guilder
1 CAD = 1.265664 ANG(1 ANG = 0.790099 CAD)
Currency converter
1 CAD =
1.2657 ANG
CAD to ANG: last 30 days
Over the last 30 days, 1 CAD traded between 1.2657 and 1.3065 ANG, averaging 1.2926 ANG. The CAD/ANG rate is down 2.58% since 2026-08-28.
- 30-day high
- 1.3065
- 2026-09-09
- 30-day low
- 1.2657
- 2026-09-25
- 30-day average
- 1.2926
- Days with data: 30
- 30-day change
- -2.58%
- since 2026-08-28
1.3065
1.26572026-08-28 → 2026-09-26
| Date | 1 CAD in ANG | Daily change |
|---|---|---|
| 2026-09-26 | 1.2657 | 0.00% |
| 2026-09-25 | 1.2657 | -0.18% |
| 2026-09-24 | 1.268 | -0.20% |
| 2026-09-23 | 1.2705 | -0.98% |
| 2026-09-22 | 1.283 | -0.19% |
| 2026-09-21 | 1.2855 | +0.21% |
| 2026-09-20 | 1.2829 | -0.14% |
| 2026-09-19 | 1.2846 | +0.53% |
| 2026-09-18 | 1.2779 | -1.20% |
| 2026-09-17 | 1.2934 | +0.05% |
| 2026-09-16 | 1.2927 | -0.09% |
| 2026-09-15 | 1.2939 | -0.32% |
| 2026-09-14 | 1.298 | +0.11% |
| 2026-09-13 | 1.2966 | -0.01% |
| 2026-09-12 | 1.2967 | -0.38% |
| Date | 1 CAD in ANG | Daily change |
|---|---|---|
| 2026-09-11 | 1.3016 | -0.19% |
| 2026-09-10 | 1.3041 | -0.18% |
| 2026-09-09 | 1.3065 | +0.11% |
| 2026-09-08 | 1.305 | +0.06% |
| 2026-09-07 | 1.3042 | +0.16% |
| 2026-09-06 | 1.3022 | -0.04% |
| 2026-09-05 | 1.3028 | -0.02% |
| 2026-09-04 | 1.303 | -0.10% |
| 2026-09-03 | 1.3043 | +0.73% |
| 2026-09-02 | 1.2948 | -0.12% |
| 2026-09-01 | 1.2964 | -0.57% |
| 2026-08-31 | 1.3038 | +0.51% |
| 2026-08-30 | 1.2971 | -0.07% |
| 2026-08-29 | 1.2981 | -0.09% |
| 2026-08-28 | 1.2992 | — |
CAD to ANG conversion table
1 CAD1.2657 ANG
5 CAD6.3283 ANG
10 CAD12.6566 ANG
25 CAD31.6416 ANG
50 CAD63.2832 ANG
100 CAD126.5664 ANG
500 CAD632.8322 ANG
1,000 CAD1,265.6644 ANG
5,000 CAD6,328.3221 ANG
10,000 CAD12,656.644 ANG
Get the CAD/ANG rate in your app
One GET request returns the latest CAD → ANG 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/ANG"fetch('https://rate-api.com/api/v1/pair/CAD/ANG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} ANG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/ANG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} ANG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/ANG');
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']} ANG\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "ANG"
},
"rate": 1.2657,
"timestamp": 1790429360,
"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
ANG to CADNetherlands Antillean Guilder → Canadian Dollar0.7901Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.