Convert RUB to BGN
Russian Ruble → Bulgarian Lev
1 RUB = 0.0201756 BGN(1 BGN = 49.564839 RUB)
Currency converter
1 RUB =
0.020176 BGN
RUB to BGN: last 30 days
Over the last 30 days, 1 RUB traded between 0.019318 and 0.02035 BGN, averaging 0.019869 BGN. The RUB/BGN rate is up 2.68% since 2026-08-28.
- 30-day high
- 0.02035
- 2026-09-22
- 30-day low
- 0.019318
- 2026-09-03
- 30-day average
- 0.019869
- Days with data: 30
- 30-day change
- +2.68%
- since 2026-08-28
0.02035
0.0193182026-08-28 → 2026-09-26
| Date | 1 RUB in BGN | Daily change |
|---|---|---|
| 2026-09-26 | 0.020176 | 0.00% |
| 2026-09-25 | 0.020176 | -0.52% |
| 2026-09-24 | 0.020281 | -0.26% |
| 2026-09-23 | 0.020333 | -0.09% |
| 2026-09-22 | 0.02035 | +0.51% |
| 2026-09-21 | 0.020247 | -0.02% |
| 2026-09-20 | 0.020251 | +0.37% |
| 2026-09-19 | 0.020177 | +1.28% |
| 2026-09-18 | 0.019922 | -1.65% |
| 2026-09-17 | 0.020257 | +0.66% |
| 2026-09-16 | 0.020125 | +0.31% |
| 2026-09-15 | 0.020062 | +0.30% |
| 2026-09-14 | 0.020001 | -0.03% |
| 2026-09-13 | 0.020007 | -0.11% |
| 2026-09-12 | 0.02003 | -0.25% |
| Date | 1 RUB in BGN | Daily change |
|---|---|---|
| 2026-09-11 | 0.020079 | +1.55% |
| 2026-09-10 | 0.019772 | +0.94% |
| 2026-09-09 | 0.019588 | +0.40% |
| 2026-09-08 | 0.01951 | +0.31% |
| 2026-09-07 | 0.019449 | -0.00% |
| 2026-09-06 | 0.01945 | -0.88% |
| 2026-09-05 | 0.019622 | +1.06% |
| 2026-09-04 | 0.019417 | +0.51% |
| 2026-09-03 | 0.019318 | -0.70% |
| 2026-09-02 | 0.019454 | -0.37% |
| 2026-09-01 | 0.019527 | -0.51% |
| 2026-08-31 | 0.019627 | +0.01% |
| 2026-08-30 | 0.019626 | +0.16% |
| 2026-08-29 | 0.019595 | -0.27% |
| 2026-08-28 | 0.019649 | — |
RUB to BGN conversion table
1 RUB0.020176 BGN
5 RUB0.10088 BGN
10 RUB0.20176 BGN
25 RUB0.50439 BGN
50 RUB1.0088 BGN
100 RUB2.0176 BGN
500 RUB10.0878 BGN
1,000 RUB20.1756 BGN
5,000 RUB100.878 BGN
10,000 RUB201.7559 BGN
Get the RUB/BGN rate in your app
One GET request returns the latest RUB → BGN 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/BGN"fetch('https://rate-api.com/api/v1/pair/RUB/BGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} BGN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/BGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} BGN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/BGN');
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']} BGN\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "BGN"
},
"rate": 0.0202,
"timestamp": 1790429293,
"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
BGN to RUBBulgarian Lev → Russian Ruble49.5648Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.