Convert RUB to EUR
Russian Ruble → Euro
1 RUB = 0.0103156 EUR(1 EUR = 96.940399 RUB)
Currency converter
1 RUB =
0.010316 EUR
RUB to EUR: last 30 days
Over the last 30 days, 1 RUB traded between 0.0098624 and 0.010415 EUR, averaging 0.010162 EUR. The RUB/EUR rate is up 2.65% since 2026-08-28.
- 30-day high
- 0.010415
- 2026-09-22
- 30-day low
- 0.0098624
- 2026-09-03
- 30-day average
- 0.010162
- Days with data: 30
- 30-day change
- +2.65%
- since 2026-08-28
0.010415
0.00986242026-08-28 → 2026-09-26
| Date | 1 RUB in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.010316 | 0.00% |
| 2026-09-25 | 0.010316 | -0.52% |
| 2026-09-24 | 0.010369 | -0.26% |
| 2026-09-23 | 0.010396 | -0.19% |
| 2026-09-22 | 0.010415 | +0.72% |
| 2026-09-21 | 0.010341 | -0.36% |
| 2026-09-20 | 0.010378 | +0.37% |
| 2026-09-19 | 0.010339 | +0.12% |
| 2026-09-18 | 0.010327 | -0.14% |
| 2026-09-17 | 0.010341 | +0.45% |
| 2026-09-16 | 0.010295 | +0.39% |
| 2026-09-15 | 0.010255 | +0.13% |
| 2026-09-14 | 0.010241 | +0.06% |
| 2026-09-13 | 0.010235 | -0.11% |
| 2026-09-12 | 0.010246 | -0.27% |
| Date | 1 RUB in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.010275 | +1.44% |
| 2026-09-10 | 0.010129 | +1.32% |
| 2026-09-09 | 0.009997 | +0.13% |
| 2026-09-08 | 0.0099844 | +0.50% |
| 2026-09-07 | 0.0099344 | -0.06% |
| 2026-09-06 | 0.0099405 | -0.85% |
| 2026-09-05 | 0.010026 | +0.97% |
| 2026-09-04 | 0.0099291 | +0.68% |
| 2026-09-03 | 0.0098624 | -0.86% |
| 2026-09-02 | 0.0099477 | -0.48% |
| 2026-09-01 | 0.0099956 | -0.35% |
| 2026-08-31 | 0.010031 | +0.46% |
| 2026-08-30 | 0.0099849 | +0.19% |
| 2026-08-29 | 0.0099663 | -0.82% |
| 2026-08-28 | 0.010049 | — |
RUB to EUR conversion table
1 RUB0.010316 EUR
5 RUB0.051578 EUR
10 RUB0.10316 EUR
25 RUB0.25789 EUR
50 RUB0.51578 EUR
100 RUB1.0316 EUR
500 RUB5.1578 EUR
1,000 RUB10.3156 EUR
5,000 RUB51.5781 EUR
10,000 RUB103.1562 EUR
Get the RUB/EUR rate in your app
One GET request returns the latest RUB → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/RUB/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "EUR"
},
"rate": 0.0103,
"timestamp": 1790429344,
"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
EUR to RUBEuro → Russian Ruble96.9404Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.