Convert CAD to AED
Canadian Dollar → UAE Dirham
1 CAD = 2.596733 AED(1 AED = 0.385099 CAD)
Currency converter
1 CAD =
2.5967 AED
CAD to AED: last 30 days
Over the last 30 days, 1 CAD traded between 2.5967 and 2.6674 AED, averaging 2.6388 AED. The CAD/AED rate is down 2.04% since 2026-08-28.
- 30-day high
- 2.6674
- 2026-09-09
- 30-day low
- 2.5967
- 2026-09-25
- 30-day average
- 2.6388
- Days with data: 30
- 30-day change
- -2.04%
- since 2026-08-28
2.6674
2.59672026-08-28 → 2026-09-26
| Date | 1 CAD in AED | Daily change |
|---|---|---|
| 2026-09-26 | 2.5967 | 0.00% |
| 2026-09-25 | 2.5967 | -0.18% |
| 2026-09-24 | 2.6014 | -0.20% |
| 2026-09-23 | 2.6066 | -0.32% |
| 2026-09-22 | 2.615 | -0.28% |
| 2026-09-21 | 2.6225 | +0.04% |
| 2026-09-20 | 2.6213 | 0.00% |
| 2026-09-19 | 2.6213 | +0.00% |
| 2026-09-18 | 2.6213 | -0.11% |
| 2026-09-17 | 2.6242 | -0.40% |
| 2026-09-16 | 2.6347 | -0.14% |
| 2026-09-15 | 2.6383 | -0.24% |
| 2026-09-14 | 2.6446 | -0.21% |
| 2026-09-13 | 2.6501 | 0.00% |
| 2026-09-12 | 2.6501 | 0.00% |
| Date | 1 CAD in AED | Daily change |
|---|---|---|
| 2026-09-11 | 2.6501 | -0.30% |
| 2026-09-10 | 2.6582 | -0.35% |
| 2026-09-09 | 2.6674 | +0.27% |
| 2026-09-08 | 2.6603 | +0.11% |
| 2026-09-07 | 2.6574 | -0.14% |
| 2026-09-06 | 2.6612 | 0.00% |
| 2026-09-05 | 2.6612 | 0.00% |
| 2026-09-04 | 2.6612 | -0.06% |
| 2026-09-03 | 2.6628 | +0.96% |
| 2026-09-02 | 2.6373 | -0.27% |
| 2026-09-01 | 2.6444 | -0.01% |
| 2026-08-31 | 2.6448 | -0.23% |
| 2026-08-30 | 2.6509 | 0.00% |
| 2026-08-29 | 2.6509 | 0.00% |
| 2026-08-28 | 2.6509 | — |
CAD to AED conversion table
1 CAD2.5967 AED
5 CAD12.9837 AED
10 CAD25.9673 AED
25 CAD64.9183 AED
50 CAD129.8367 AED
100 CAD259.6733 AED
500 CAD1,298.3666 AED
1,000 CAD2,596.7333 AED
5,000 CAD12,983.666 AED
10,000 CAD25,967.333 AED
Get the CAD/AED rate in your app
One GET request returns the latest CAD → AED 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/AED"fetch('https://rate-api.com/api/v1/pair/CAD/AED', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} AED`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/AED",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} AED")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/AED');
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']} AED\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "AED"
},
"rate": 2.5967,
"timestamp": 1790439646,
"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
AED to CADUAE Dirham → Canadian Dollar0.3851Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.