Convert RUB to MDL
Russian Ruble → Moldovan Leu
1 RUB = 0.206883 MDL(1 MDL = 4.833659 RUB)
Currency converter
1 RUB =
0.20688 MDL
RUB to MDL: last 30 days
Over the last 30 days, 1 RUB traded between 0.19826 and 0.20963 MDL, averaging 0.20384 MDL. The RUB/MDL rate is up 3.35% since 2026-08-28.
- 30-day high
- 0.20963
- 2026-09-22
- 30-day low
- 0.19826
- 2026-09-03
- 30-day average
- 0.20384
- Days with data: 30
- 30-day change
- +3.35%
- since 2026-08-28
0.20963
0.198262026-08-28 → 2026-09-26
| Date | 1 RUB in MDL | Daily change |
|---|---|---|
| 2026-09-26 | 0.20688 | 0.00% |
| 2026-09-25 | 0.20688 | -0.21% |
| 2026-09-24 | 0.20731 | -0.63% |
| 2026-09-23 | 0.20863 | -0.48% |
| 2026-09-22 | 0.20963 | +0.52% |
| 2026-09-21 | 0.20855 | +0.11% |
| 2026-09-20 | 0.20832 | +0.09% |
| 2026-09-19 | 0.20814 | +0.20% |
| 2026-09-18 | 0.20773 | -0.21% |
| 2026-09-17 | 0.20817 | +0.84% |
| 2026-09-16 | 0.20643 | +0.32% |
| 2026-09-15 | 0.20578 | +0.39% |
| 2026-09-14 | 0.20498 | +0.23% |
| 2026-09-13 | 0.20451 | -0.50% |
| 2026-09-12 | 0.20554 | -0.20% |
| Date | 1 RUB in MDL | Daily change |
|---|---|---|
| 2026-09-11 | 0.20594 | +1.38% |
| 2026-09-10 | 0.20314 | +1.27% |
| 2026-09-09 | 0.20059 | +0.28% |
| 2026-09-08 | 0.20002 | +0.56% |
| 2026-09-07 | 0.19891 | -0.19% |
| 2026-09-06 | 0.19929 | -0.68% |
| 2026-09-05 | 0.20065 | +0.68% |
| 2026-09-04 | 0.19929 | +0.52% |
| 2026-09-03 | 0.19826 | -0.54% |
| 2026-09-02 | 0.19933 | +0.43% |
| 2026-09-01 | 0.19848 | -1.77% |
| 2026-08-31 | 0.20207 | +0.58% |
| 2026-08-30 | 0.20089 | +0.13% |
| 2026-08-29 | 0.20064 | +0.23% |
| 2026-08-28 | 0.20017 | — |
RUB to MDL conversion table
1 RUB0.20688 MDL
5 RUB1.0344 MDL
10 RUB2.0688 MDL
25 RUB5.1721 MDL
50 RUB10.3441 MDL
100 RUB20.6883 MDL
500 RUB103.4413 MDL
1,000 RUB206.8826 MDL
5,000 RUB1,034.4131 MDL
10,000 RUB2,068.8262 MDL
Get the RUB/MDL rate in your app
One GET request returns the latest RUB → MDL 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/RUB/MDL"fetch('https://rate-api.com/api/v1/pair/RUB/MDL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} MDL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/MDL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} MDL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/MDL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RUB = {$data['rate']} MDL\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "MDL"
},
"rate": 0.2069,
"timestamp": 1790447428,
"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
MDL to RUBMoldovan Leu → Russian Ruble4.8337Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.