Convert MDL to RUB
Moldovan Leu → Russian Ruble
1 MDL = 4.833659 RUB(1 RUB = 0.206883 MDL)
Currency converter
1 MDL =
4.8337 RUB
MDL to RUB: last 30 days
Over the last 30 days, 1 MDL traded between 4.7703 and 5.0439 RUB, averaging 4.9075 RUB. The MDL/RUB rate is down 3.24% since 2026-08-28.
- 30-day high
- 5.0439
- 2026-09-03
- 30-day low
- 4.7703
- 2026-09-22
- 30-day average
- 4.9075
- Days with data: 30
- 30-day change
- -3.24%
- since 2026-08-28
5.0439
4.77032026-08-28 → 2026-09-26
| Date | 1 MDL in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 4.8337 | 0.00% |
| 2026-09-25 | 4.8337 | +0.21% |
| 2026-09-24 | 4.8237 | +0.64% |
| 2026-09-23 | 4.7931 | +0.48% |
| 2026-09-22 | 4.7703 | -0.52% |
| 2026-09-21 | 4.7951 | -0.11% |
| 2026-09-20 | 4.8003 | -0.09% |
| 2026-09-19 | 4.8044 | -0.20% |
| 2026-09-18 | 4.8139 | +0.21% |
| 2026-09-17 | 4.8038 | -0.83% |
| 2026-09-16 | 4.8441 | -0.32% |
| 2026-09-15 | 4.8595 | -0.39% |
| 2026-09-14 | 4.8786 | -0.23% |
| 2026-09-13 | 4.8898 | +0.50% |
| 2026-09-12 | 4.8652 | +0.20% |
| Date | 1 MDL in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 4.8557 | -1.36% |
| 2026-09-10 | 4.9228 | -1.25% |
| 2026-09-09 | 4.9853 | -0.28% |
| 2026-09-08 | 4.9994 | -0.56% |
| 2026-09-07 | 5.0274 | +0.19% |
| 2026-09-06 | 5.0178 | +0.68% |
| 2026-09-05 | 4.9839 | -0.68% |
| 2026-09-04 | 5.0178 | -0.52% |
| 2026-09-03 | 5.0439 | +0.54% |
| 2026-09-02 | 5.0168 | -0.43% |
| 2026-09-01 | 5.0383 | +1.81% |
| 2026-08-31 | 4.9489 | -0.58% |
| 2026-08-30 | 4.9777 | -0.13% |
| 2026-08-29 | 4.9841 | -0.23% |
| 2026-08-28 | 4.9957 | — |
MDL to RUB conversion table
1 MDL4.8337 RUB
5 MDL24.1683 RUB
10 MDL48.3366 RUB
25 MDL120.8415 RUB
50 MDL241.6829 RUB
100 MDL483.3659 RUB
500 MDL2,416.8294 RUB
1,000 MDL4,833.6588 RUB
5,000 MDL24,168.294 RUB
10,000 MDL48,336.588 RUB
Get the MDL/RUB rate in your app
One GET request returns the latest MDL → 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/MDL/RUB"fetch('https://rate-api.com/api/v1/pair/MDL/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 MDL = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/MDL/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 MDL = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/MDL/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 MDL = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "MDL",
"to": "RUB"
},
"rate": 4.8337,
"timestamp": 1790435058,
"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 MDLRussian Ruble → Moldovan Leu0.20688Convert MDL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.