Convert CAD to IDR
Canadian Dollar → Indonesian Rupiah
1 CAD = 12,666.472 IDR(1 IDR = 0.0000789486 CAD)
Currency converter
1 CAD =
12,666.472 IDR
CAD to IDR: last 30 days
Over the last 30 days, 1 CAD traded between 12,630.354 and 12,795.099 IDR, averaging 12,728.059 IDR. The CAD/IDR rate is down 0.95% since 2026-08-28.
- 30-day high
- 12,795.099
- 2026-09-03
- 30-day low
- 12,630.354
- 2026-09-23
- 30-day average
- 12,728.059
- Days with data: 30
- 30-day change
- -0.95%
- since 2026-08-28
12,795.099
12,630.3542026-08-28 → 2026-09-26
| Date | 1 CAD in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 12,666.472 | 0.00% |
| 2026-09-25 | 12,666.472 | -0.29% |
| 2026-09-24 | 12,702.748 | +0.57% |
| 2026-09-23 | 12,630.354 | -0.46% |
| 2026-09-22 | 12,688.693 | -0.56% |
| 2026-09-21 | 12,759.926 | +0.30% |
| 2026-09-20 | 12,721.627 | 0.00% |
| 2026-09-19 | 12,721.627 | 0.00% |
| 2026-09-18 | 12,721.627 | +0.43% |
| 2026-09-17 | 12,666.667 | -0.08% |
| 2026-09-16 | 12,676.663 | -0.29% |
| 2026-09-15 | 12,713.362 | -0.03% |
| 2026-09-14 | 12,716.93 | +0.11% |
| 2026-09-13 | 12,702.41 | 0.00% |
| 2026-09-12 | 12,702.41 | 0.00% |
| Date | 1 CAD in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 12,702.41 | -0.14% |
| 2026-09-10 | 12,720.035 | +0.21% |
| 2026-09-09 | 12,693.202 | -0.42% |
| 2026-09-08 | 12,746.831 | -0.17% |
| 2026-09-07 | 12,769.175 | -0.08% |
| 2026-09-06 | 12,779.71 | 0.00% |
| 2026-09-05 | 12,779.71 | 0.00% |
| 2026-09-04 | 12,779.71 | -0.12% |
| 2026-09-03 | 12,795.099 | +0.58% |
| 2026-09-02 | 12,721.724 | -0.43% |
| 2026-09-01 | 12,777.218 | +0.18% |
| 2026-08-31 | 12,753.853 | -0.27% |
| 2026-08-30 | 12,788.364 | 0.00% |
| 2026-08-29 | 12,788.364 | 0.00% |
| 2026-08-28 | 12,788.364 | — |
CAD to IDR conversion table
1 CAD12,666.472 IDR
5 CAD63,332.362 IDR
10 CAD126,664.72 IDR
25 CAD316,661.81 IDR
50 CAD633,323.62 IDR
100 CAD1,266,647.2 IDR
500 CAD6,333,236.2 IDR
1,000 CAD12,666,472 IDR
5,000 CAD63,332,362 IDR
10,000 CAD126,664,724 IDR
Get the CAD/IDR rate in your app
One GET request returns the latest CAD → IDR 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/IDR"fetch('https://rate-api.com/api/v1/pair/CAD/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/IDR');
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']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "IDR"
},
"rate": 12666.4724,
"timestamp": 1790429426,
"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
IDR to CADIndonesian Rupiah → Canadian Dollar0.000078949Convert CAD to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.