Convert RUB to BRL
Russian Ruble → Brazilian Real
1 RUB = 0.060956 BRL(1 BRL = 16.405273 RUB)
Currency converter
1 RUB =
0.060956 BRL
RUB to BRL: last 30 days
Over the last 30 days, 1 RUB traded between 0.058123 and 0.061165 BRL, averaging 0.06029 BRL. The RUB/BRL rate is up 0.89% since 2026-08-28.
- 30-day high
- 0.061165
- 2026-09-22
- 30-day low
- 0.058123
- 2026-09-03
- 30-day average
- 0.06029
- Days with data: 30
- 30-day change
- +0.89%
- since 2026-08-28
0.061165
0.0581232026-08-28 → 2026-09-26
| Date | 1 RUB in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 0.060956 | 0.00% |
| 2026-09-25 | 0.060956 | -0.18% |
| 2026-09-24 | 0.061065 | +0.30% |
| 2026-09-23 | 0.060882 | -0.46% |
| 2026-09-22 | 0.061165 | +0.39% |
| 2026-09-21 | 0.060927 | -0.25% |
| 2026-09-20 | 0.06108 | +0.37% |
| 2026-09-19 | 0.060854 | +0.12% |
| 2026-09-18 | 0.06078 | -0.22% |
| 2026-09-17 | 0.060914 | -0.33% |
| 2026-09-16 | 0.061117 | +0.27% |
| 2026-09-15 | 0.060953 | -0.08% |
| 2026-09-14 | 0.061 | +0.60% |
| 2026-09-13 | 0.060638 | -0.11% |
| 2026-09-12 | 0.060705 | -0.27% |
| Date | 1 RUB in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 0.060872 | +0.96% |
| 2026-09-10 | 0.060294 | +1.71% |
| 2026-09-09 | 0.059278 | +0.02% |
| 2026-09-08 | 0.059268 | +0.14% |
| 2026-09-07 | 0.059185 | +0.23% |
| 2026-09-06 | 0.059051 | -0.85% |
| 2026-09-05 | 0.059557 | +0.97% |
| 2026-09-04 | 0.058983 | +1.48% |
| 2026-09-03 | 0.058123 | -2.02% |
| 2026-09-02 | 0.059323 | -1.50% |
| 2026-09-01 | 0.060229 | +0.12% |
| 2026-08-31 | 0.060158 | +0.21% |
| 2026-08-30 | 0.060034 | +0.19% |
| 2026-08-29 | 0.059923 | -0.82% |
| 2026-08-28 | 0.060419 | — |
RUB to BRL conversion table
1 RUB0.060956 BRL
5 RUB0.30478 BRL
10 RUB0.60956 BRL
25 RUB1.5239 BRL
50 RUB3.0478 BRL
100 RUB6.0956 BRL
500 RUB30.478 BRL
1,000 RUB60.956 BRL
5,000 RUB304.7801 BRL
10,000 RUB609.5601 BRL
Get the RUB/BRL rate in your app
One GET request returns the latest RUB → BRL 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/BRL"fetch('https://rate-api.com/api/v1/pair/RUB/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/BRL');
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']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "BRL"
},
"rate": 0.061,
"timestamp": 1790429310,
"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
BRL to RUBBrazilian Real → Russian Ruble16.4053Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.