Convert RUB to MXN
Russian Ruble → Mexican Peso
1 RUB = 0.208186 MXN(1 MXN = 4.803405 RUB)
Currency converter
1 RUB =
0.20819 MXN
RUB to MXN: last 30 days
Over the last 30 days, 1 RUB traded between 0.19487 and 0.20819 MXN, averaging 0.20074 MXN. The RUB/MXN rate is up 4.99% since 2026-08-28.
- 30-day high
- 0.20819
- 2026-09-25
- 30-day low
- 0.19487
- 2026-09-03
- 30-day average
- 0.20074
- Days with data: 30
- 30-day change
- +4.99%
- since 2026-08-28
0.20819
0.194872026-08-28 → 2026-09-26
| Date | 1 RUB in MXN | Daily change |
|---|---|---|
| 2026-09-26 | 0.20819 | 0.00% |
| 2026-09-25 | 0.20819 | +0.45% |
| 2026-09-24 | 0.20726 | +0.19% |
| 2026-09-23 | 0.20688 | +0.46% |
| 2026-09-22 | 0.20594 | +0.82% |
| 2026-09-21 | 0.20426 | -0.01% |
| 2026-09-20 | 0.20429 | +0.37% |
| 2026-09-19 | 0.20353 | +0.12% |
| 2026-09-18 | 0.20329 | -0.38% |
| 2026-09-17 | 0.20406 | +0.25% |
| 2026-09-16 | 0.20355 | +0.26% |
| 2026-09-15 | 0.20301 | +0.52% |
| 2026-09-14 | 0.20196 | +0.26% |
| 2026-09-13 | 0.20143 | -0.11% |
| 2026-09-12 | 0.20165 | -0.27% |
| Date | 1 RUB in MXN | Daily change |
|---|---|---|
| 2026-09-11 | 0.2022 | +1.43% |
| 2026-09-10 | 0.19935 | +1.25% |
| 2026-09-09 | 0.19689 | +0.17% |
| 2026-09-08 | 0.19656 | +0.67% |
| 2026-09-07 | 0.19526 | +0.02% |
| 2026-09-06 | 0.19523 | -0.85% |
| 2026-09-05 | 0.19691 | +0.97% |
| 2026-09-04 | 0.19501 | +0.07% |
| 2026-09-03 | 0.19487 | -0.48% |
| 2026-09-02 | 0.19581 | -0.58% |
| 2026-09-01 | 0.19695 | -0.45% |
| 2026-08-31 | 0.19784 | +0.41% |
| 2026-08-30 | 0.19703 | +0.19% |
| 2026-08-29 | 0.19666 | -0.82% |
| 2026-08-28 | 0.19829 | — |
RUB to MXN conversion table
1 RUB0.20819 MXN
5 RUB1.0409 MXN
10 RUB2.0819 MXN
25 RUB5.2046 MXN
50 RUB10.4093 MXN
100 RUB20.8186 MXN
500 RUB104.0928 MXN
1,000 RUB208.1857 MXN
5,000 RUB1,040.9283 MXN
10,000 RUB2,081.8565 MXN
Get the RUB/MXN rate in your app
One GET request returns the latest RUB → MXN 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/MXN"fetch('https://rate-api.com/api/v1/pair/RUB/MXN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} MXN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/MXN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} MXN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/MXN');
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']} MXN\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "MXN"
},
"rate": 0.2082,
"timestamp": 1790437514,
"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
MXN to RUBMexican Peso → Russian Ruble4.8034Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.