Convert RUB to GEL
Russian Ruble → Georgian Lari
1 RUB = 0.0305936 GEL(1 GEL = 32.686544 RUB)
Currency converter
1 RUB =
0.030594 GEL
RUB to GEL: last 30 days
Over the last 30 days, 1 RUB traded between 0.029854 and 0.031037 GEL, averaging 0.030538 GEL. The RUB/GEL rate is up 0.39% since 2026-08-28.
- 30-day high
- 0.031037
- 2026-09-22
- 30-day low
- 0.029854
- 2026-09-03
- 30-day average
- 0.030538
- Days with data: 30
- 30-day change
- +0.39%
- since 2026-08-28
0.031037
0.0298542026-08-28 → 2026-09-26
| Date | 1 RUB in GEL | Daily change |
|---|---|---|
| 2026-09-26 | 0.030594 | 0.00% |
| 2026-09-25 | 0.030594 | -0.53% |
| 2026-09-24 | 0.030756 | -0.40% |
| 2026-09-23 | 0.030878 | -0.51% |
| 2026-09-22 | 0.031037 | +0.52% |
| 2026-09-21 | 0.030877 | -0.13% |
| 2026-09-20 | 0.030917 | +0.35% |
| 2026-09-19 | 0.03081 | +0.42% |
| 2026-09-18 | 0.030683 | -0.58% |
| 2026-09-17 | 0.030862 | -0.01% |
| 2026-09-16 | 0.030864 | +0.37% |
| 2026-09-15 | 0.030749 | +0.05% |
| 2026-09-14 | 0.030734 | -0.51% |
| 2026-09-13 | 0.030893 | -0.03% |
| 2026-09-12 | 0.030901 | -0.26% |
| Date | 1 RUB in GEL | Daily change |
|---|---|---|
| 2026-09-11 | 0.03098 | +1.20% |
| 2026-09-10 | 0.030614 | +1.02% |
| 2026-09-09 | 0.030305 | +0.41% |
| 2026-09-08 | 0.030181 | +0.52% |
| 2026-09-07 | 0.030026 | -0.25% |
| 2026-09-06 | 0.030102 | -0.89% |
| 2026-09-05 | 0.030371 | +0.81% |
| 2026-09-04 | 0.030127 | +0.91% |
| 2026-09-03 | 0.029854 | -0.68% |
| 2026-09-02 | 0.030057 | -0.47% |
| 2026-09-01 | 0.030198 | -0.19% |
| 2026-08-31 | 0.030257 | +0.01% |
| 2026-08-30 | 0.030254 | +0.19% |
| 2026-08-29 | 0.030197 | -0.91% |
| 2026-08-28 | 0.030476 | — |
RUB to GEL conversion table
1 RUB0.030594 GEL
5 RUB0.15297 GEL
10 RUB0.30594 GEL
25 RUB0.76484 GEL
50 RUB1.5297 GEL
100 RUB3.0594 GEL
500 RUB15.2968 GEL
1,000 RUB30.5936 GEL
5,000 RUB152.9681 GEL
10,000 RUB305.9363 GEL
Get the RUB/GEL rate in your app
One GET request returns the latest RUB → GEL 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/GEL"fetch('https://rate-api.com/api/v1/pair/RUB/GEL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} GEL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/GEL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} GEL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/GEL');
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']} GEL\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "GEL"
},
"rate": 0.0306,
"timestamp": 1790429333,
"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
GEL to RUBGeorgian Lari → Russian Ruble32.6865Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.