Convert CAD to MYR
Canadian Dollar → Malaysian Ringgit
1 CAD = 2.880635 MYR(1 MYR = 0.347146 CAD)
Currency converter
1 CAD =
2.8806 MYR
CAD to MYR: last 30 days
Over the last 30 days, 1 CAD traded between 2.8806 and 2.9561 MYR, averaging 2.919 MYR. The CAD/MYR rate is down 0.87% since 2026-08-28.
- 30-day high
- 2.9561
- 2026-09-09
- 30-day low
- 2.8806
- 2026-09-25
- 30-day average
- 2.919
- Days with data: 30
- 30-day change
- -0.87%
- since 2026-08-28
2.9561
2.88062026-08-28 → 2026-09-26
| Date | 1 CAD in MYR | Daily change |
|---|---|---|
| 2026-09-26 | 2.8806 | 0.00% |
| 2026-09-25 | 2.8806 | -0.50% |
| 2026-09-24 | 2.8951 | -0.03% |
| 2026-09-23 | 2.8959 | -0.17% |
| 2026-09-22 | 2.9009 | -0.37% |
| 2026-09-21 | 2.9117 | -0.03% |
| 2026-09-20 | 2.9126 | 0.00% |
| 2026-09-19 | 2.9126 | 0.00% |
| 2026-09-18 | 2.9126 | -0.56% |
| 2026-09-17 | 2.9289 | -0.11% |
| 2026-09-16 | 2.9321 | -0.14% |
| 2026-09-15 | 2.9361 | +0.03% |
| 2026-09-14 | 2.9351 | -0.07% |
| 2026-09-13 | 2.9373 | 0.00% |
| 2026-09-12 | 2.9373 | 0.00% |
| Date | 1 CAD in MYR | Daily change |
|---|---|---|
| 2026-09-11 | 2.9373 | -0.18% |
| 2026-09-10 | 2.9426 | -0.46% |
| 2026-09-09 | 2.9561 | +0.48% |
| 2026-09-08 | 2.9421 | +0.49% |
| 2026-09-07 | 2.9276 | -0.11% |
| 2026-09-06 | 2.9308 | 0.00% |
| 2026-09-05 | 2.9308 | 0.00% |
| 2026-09-04 | 2.9308 | +0.02% |
| 2026-09-03 | 2.9303 | +0.86% |
| 2026-09-02 | 2.9052 | -0.12% |
| 2026-09-01 | 2.9086 | +0.32% |
| 2026-08-31 | 2.8993 | -0.23% |
| 2026-08-30 | 2.906 | 0.00% |
| 2026-08-29 | 2.906 | 0.00% |
| 2026-08-28 | 2.906 | — |
CAD to MYR conversion table
1 CAD2.8806 MYR
5 CAD14.4032 MYR
10 CAD28.8064 MYR
25 CAD72.0159 MYR
50 CAD144.0318 MYR
100 CAD288.0635 MYR
500 CAD1,440.3175 MYR
1,000 CAD2,880.635 MYR
5,000 CAD14,403.175 MYR
10,000 CAD28,806.35 MYR
Get the CAD/MYR rate in your app
One GET request returns the latest CAD → MYR 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/MYR"fetch('https://rate-api.com/api/v1/pair/CAD/MYR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CAD = ${data.rate} MYR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CAD/MYR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CAD = {data['rate']} MYR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CAD/MYR');
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']} MYR\n";Example response
{
"success": true,
"pair": {
"from": "CAD",
"to": "MYR"
},
"rate": 2.8806,
"timestamp": 1790429447,
"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
MYR to CADMalaysian Ringgit → Canadian Dollar0.34715Convert CAD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.