Convert MYR to CAD
Malaysian Ringgit → Canadian Dollar
1 MYR = 0.347146 CAD(1 CAD = 2.880635 MYR)
Currency converter
1 MYR =
0.34715 CAD
MYR to CAD: last 30 days
Over the last 30 days, 1 MYR traded between 0.33828 and 0.34715 CAD, averaging 0.3426 CAD. The MYR/CAD rate is up 0.88% since 2026-08-28.
- 30-day high
- 0.34715
- 2026-09-25
- 30-day low
- 0.33828
- 2026-09-09
- 30-day average
- 0.3426
- Days with data: 30
- 30-day change
- +0.88%
- since 2026-08-28
0.34715
0.338282026-08-28 → 2026-09-26
| Date | 1 MYR in CAD | Daily change |
|---|---|---|
| 2026-09-26 | 0.34715 | 0.00% |
| 2026-09-25 | 0.34715 | +0.50% |
| 2026-09-24 | 0.34542 | +0.03% |
| 2026-09-23 | 0.34532 | +0.17% |
| 2026-09-22 | 0.34472 | +0.37% |
| 2026-09-21 | 0.34345 | +0.03% |
| 2026-09-20 | 0.34334 | 0.00% |
| 2026-09-19 | 0.34334 | 0.00% |
| 2026-09-18 | 0.34334 | +0.56% |
| 2026-09-17 | 0.34142 | +0.11% |
| 2026-09-16 | 0.34106 | +0.14% |
| 2026-09-15 | 0.34059 | -0.03% |
| 2026-09-14 | 0.3407 | +0.07% |
| 2026-09-13 | 0.34045 | 0.00% |
| 2026-09-12 | 0.34045 | 0.00% |
| Date | 1 MYR in CAD | Daily change |
|---|---|---|
| 2026-09-11 | 0.34045 | +0.18% |
| 2026-09-10 | 0.33984 | +0.46% |
| 2026-09-09 | 0.33828 | -0.48% |
| 2026-09-08 | 0.3399 | -0.49% |
| 2026-09-07 | 0.34157 | +0.11% |
| 2026-09-06 | 0.3412 | 0.00% |
| 2026-09-05 | 0.3412 | 0.00% |
| 2026-09-04 | 0.3412 | -0.02% |
| 2026-09-03 | 0.34126 | -0.86% |
| 2026-09-02 | 0.34421 | +0.12% |
| 2026-09-01 | 0.3438 | -0.32% |
| 2026-08-31 | 0.34491 | +0.23% |
| 2026-08-30 | 0.34411 | 0.00% |
| 2026-08-29 | 0.34411 | 0.00% |
| 2026-08-28 | 0.34411 | — |
MYR to CAD conversion table
1 MYR0.34715 CAD
5 MYR1.7357 CAD
10 MYR3.4715 CAD
25 MYR8.6786 CAD
50 MYR17.3573 CAD
100 MYR34.7146 CAD
500 MYR173.5728 CAD
1,000 MYR347.1457 CAD
5,000 MYR1,735.7284 CAD
10,000 MYR3,471.4569 CAD
Get the MYR/CAD rate in your app
One GET request returns the latest MYR → 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/MYR/CAD"fetch('https://rate-api.com/api/v1/pair/MYR/CAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} CAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/CAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} CAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/CAD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MYR = {$data['rate']} CAD\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "CAD"
},
"rate": 0.3471,
"timestamp": 1790432214,
"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
CAD to MYRCanadian Dollar → Malaysian Ringgit2.8806Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.