Convert MYR to RUB
Malaysian Ringgit → Russian Ruble
1 MYR = 20.867143 RUB(1 RUB = 0.0479222 MYR)
Currency converter
1 MYR =
20.8671 RUB
MYR to RUB: last 30 days
Over the last 30 days, 1 MYR traded between 20.5487 and 21.6002 RUB, averaging 20.9803 RUB. The MYR/RUB rate is down 1.71% since 2026-08-28.
- 30-day high
- 21.6002
- 2026-09-03
- 30-day low
- 20.5487
- 2026-09-17
- 30-day average
- 20.9803
- Days with data: 30
- 30-day change
- -1.71%
- since 2026-08-28
21.6002
20.54872026-08-28 → 2026-09-26
| Date | 1 MYR in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 20.8671 | 0.00% |
| 2026-09-25 | 20.8671 | +0.52% |
| 2026-09-24 | 20.7585 | +0.47% |
| 2026-09-23 | 20.6611 | +0.50% |
| 2026-09-22 | 20.5592 | -0.40% |
| 2026-09-21 | 20.6413 | +0.17% |
| 2026-09-20 | 20.6065 | -0.37% |
| 2026-09-19 | 20.683 | -0.12% |
| 2026-09-18 | 20.7081 | +0.78% |
| 2026-09-17 | 20.5487 | -0.26% |
| 2026-09-16 | 20.6014 | -0.37% |
| 2026-09-15 | 20.6781 | -0.30% |
| 2026-09-14 | 20.7394 | +0.16% |
| 2026-09-13 | 20.7062 | +0.11% |
| 2026-09-12 | 20.6832 | +0.27% |
| Date | 1 MYR in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 20.6265 | -1.34% |
| 2026-09-10 | 20.9066 | -0.88% |
| 2026-09-09 | 21.0928 | -0.66% |
| 2026-09-08 | 21.2328 | -0.81% |
| 2026-09-07 | 21.4068 | +0.02% |
| 2026-09-06 | 21.4016 | +0.86% |
| 2026-09-05 | 21.2197 | -0.96% |
| 2026-09-04 | 21.4263 | -0.81% |
| 2026-09-03 | 21.6002 | +0.64% |
| 2026-09-02 | 21.4621 | +0.44% |
| 2026-09-01 | 21.3688 | +0.07% |
| 2026-08-31 | 21.3538 | -0.06% |
| 2026-08-30 | 21.3659 | -0.19% |
| 2026-08-29 | 21.4058 | +0.83% |
| 2026-08-28 | 21.2297 | — |
MYR to RUB conversion table
1 MYR20.8671 RUB
5 MYR104.3357 RUB
10 MYR208.6714 RUB
25 MYR521.6786 RUB
50 MYR1,043.3571 RUB
100 MYR2,086.7143 RUB
500 MYR10,433.571 RUB
1,000 MYR20,867.143 RUB
5,000 MYR104,335.71 RUB
10,000 MYR208,671.43 RUB
Get the MYR/RUB rate in your app
One GET request returns the latest MYR → RUB 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/RUB"fetch('https://rate-api.com/api/v1/pair/MYR/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MYR = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MYR/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MYR = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MYR/RUB');
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']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "MYR",
"to": "RUB"
},
"rate": 20.8671,
"timestamp": 1790432146,
"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
RUB to MYRRussian Ruble → Malaysian Ringgit0.047922Convert MYR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.