Convert AUD to CAD
Australian Dollar → Canadian Dollar
1 AUD = 0.994266 CAD(1 CAD = 1.005767 AUD)
Currency converter
1 AUD =
0.99427 CAD
AUD to CAD: last 30 days
Over the last 30 days, 1 AUD traded between 0.99009 and 0.99957 CAD, averaging 0.99482 CAD. The AUD/CAD rate is down 0.25% since 2026-08-29.
- 30-day high
- 0.99957
- 2026-09-21
- 30-day low
- 0.99009
- 2026-09-14
- 30-day average
- 0.99482
- Days with data: 30
- 30-day change
- -0.25%
- since 2026-08-29
0.99957
0.990092026-08-29 → 2026-09-27
| Date | 1 AUD in CAD | Daily change |
|---|---|---|
| 2026-09-27 | 0.99427 | 0.00% |
| 2026-09-26 | 0.99427 | 0.00% |
| 2026-09-25 | 0.99427 | +0.23% |
| 2026-09-24 | 0.99196 | -0.38% |
| 2026-09-23 | 0.99573 | -0.29% |
| 2026-09-22 | 0.99858 | -0.10% |
| 2026-09-21 | 0.99957 | +0.21% |
| 2026-09-20 | 0.99751 | 0.00% |
| 2026-09-19 | 0.99751 | 0.00% |
| 2026-09-18 | 0.99751 | +0.19% |
| 2026-09-17 | 0.99559 | +0.14% |
| 2026-09-16 | 0.99415 | +0.23% |
| 2026-09-15 | 0.99188 | +0.18% |
| 2026-09-14 | 0.99009 | -0.39% |
| 2026-09-13 | 0.99398 | 0.00% |
| Date | 1 AUD in CAD | Daily change |
|---|---|---|
| 2026-09-12 | 0.99398 | 0.00% |
| 2026-09-11 | 0.99398 | +0.13% |
| 2026-09-10 | 0.99267 | -0.21% |
| 2026-09-09 | 0.99473 | -0.12% |
| 2026-09-08 | 0.99596 | -0.11% |
| 2026-09-07 | 0.99704 | +0.30% |
| 2026-09-06 | 0.99409 | 0.00% |
| 2026-09-05 | 0.99409 | 0.00% |
| 2026-09-04 | 0.99409 | +0.20% |
| 2026-09-03 | 0.99209 | -0.32% |
| 2026-09-02 | 0.99528 | +0.35% |
| 2026-09-01 | 0.99179 | -0.27% |
| 2026-08-31 | 0.99449 | -0.23% |
| 2026-08-30 | 0.99676 | 0.00% |
| 2026-08-29 | 0.99676 | — |
AUD to CAD conversion table
1 AUD0.99427 CAD
5 AUD4.9713 CAD
10 AUD9.9427 CAD
25 AUD24.8567 CAD
50 AUD49.7133 CAD
100 AUD99.4266 CAD
500 AUD497.1332 CAD
1,000 AUD994.2663 CAD
5,000 AUD4,971.3317 CAD
10,000 AUD9,942.6634 CAD
Get the AUD/CAD rate in your app
One GET request returns the latest AUD → CAD 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/AUD/CAD"fetch('https://rate-api.com/api/v1/pair/AUD/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "CAD"
},
"rate": 0.9943,
"timestamp": 1790470782,
"date": "2026-09-27"
}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
CAD to AUDCanadian Dollar → Australian Dollar1.0058Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.