Convert EUR to RUB
Euro → Russian Ruble
1 EUR = 96.940399 RUB(1 RUB = 0.0103156 EUR)
Currency converter
1 EUR =
96.9404 RUB
EUR to RUB: last 30 days
Over the last 30 days, 1 EUR traded between 96.0123 and 101.3953 RUB, averaging 98.4356 RUB. The EUR/RUB rate is down 2.59% since 2026-08-28.
- 30-day high
- 101.3953
- 2026-09-03
- 30-day low
- 96.0123
- 2026-09-22
- 30-day average
- 98.4356
- Days with data: 30
- 30-day change
- -2.59%
- since 2026-08-28
101.3953
96.01232026-08-28 → 2026-09-26
| Date | 1 EUR in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 96.9404 | 0.00% |
| 2026-09-25 | 96.9404 | +0.52% |
| 2026-09-24 | 96.438 | +0.26% |
| 2026-09-23 | 96.1919 | +0.19% |
| 2026-09-22 | 96.0123 | -0.72% |
| 2026-09-21 | 96.7057 | +0.36% |
| 2026-09-20 | 96.3614 | -0.37% |
| 2026-09-19 | 96.7189 | -0.12% |
| 2026-09-18 | 96.8366 | +0.14% |
| 2026-09-17 | 96.7039 | -0.45% |
| 2026-09-16 | 97.1386 | -0.39% |
| 2026-09-15 | 97.5174 | -0.13% |
| 2026-09-14 | 97.6448 | -0.06% |
| 2026-09-13 | 97.703 | +0.11% |
| 2026-09-12 | 97.5947 | +0.27% |
| Date | 1 EUR in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 97.3272 | -1.42% |
| 2026-09-10 | 98.7311 | -1.30% |
| 2026-09-09 | 100.03 | -0.13% |
| 2026-09-08 | 100.1559 | -0.50% |
| 2026-09-07 | 100.6599 | +0.06% |
| 2026-09-06 | 100.5983 | +0.86% |
| 2026-09-05 | 99.7434 | -0.96% |
| 2026-09-04 | 100.7142 | -0.67% |
| 2026-09-03 | 101.3953 | +0.87% |
| 2026-09-02 | 100.5254 | +0.48% |
| 2026-09-01 | 100.0444 | +0.35% |
| 2026-08-31 | 99.6909 | -0.46% |
| 2026-08-30 | 100.1517 | -0.19% |
| 2026-08-29 | 100.3383 | +0.83% |
| 2026-08-28 | 99.5132 | — |
EUR to RUB conversion table
1 EUR96.9404 RUB
5 EUR484.702 RUB
10 EUR969.404 RUB
25 EUR2,423.51 RUB
50 EUR4,847.0199 RUB
100 EUR9,694.0399 RUB
500 EUR48,470.199 RUB
1,000 EUR96,940.399 RUB
5,000 EUR484,701.99 RUB
10,000 EUR969,403.99 RUB
Get the EUR/RUB rate in your app
One GET request returns the latest EUR → 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/EUR/RUB"fetch('https://rate-api.com/api/v1/pair/EUR/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "RUB"
},
"rate": 96.9404,
"timestamp": 1790429348,
"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 EURRussian Ruble → Euro0.010316Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.