Convert RUB to BDT
Russian Ruble → Bangladeshi Taka
1 RUB = 1.448735 BDT(1 BDT = 0.690257 RUB)
Currency converter
1 RUB =
1.4487 BDT
RUB to BDT: last 30 days
Over the last 30 days, 1 RUB traded between 1.4044 and 1.4709 BDT, averaging 1.4444 BDT. The RUB/BDT rate is up 0.54% since 2026-08-28.
- 30-day high
- 1.4709
- 2026-09-11
- 30-day low
- 1.4044
- 2026-09-03
- 30-day average
- 1.4444
- Days with data: 30
- 30-day change
- +0.54%
- since 2026-08-28
1.4709
1.40442026-08-28 → 2026-09-26
| Date | 1 RUB in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 1.4487 | 0.00% |
| 2026-09-25 | 1.4487 | -0.21% |
| 2026-09-24 | 1.4517 | -0.46% |
| 2026-09-23 | 1.4585 | -0.59% |
| 2026-09-22 | 1.4672 | +0.56% |
| 2026-09-21 | 1.4591 | -0.48% |
| 2026-09-20 | 1.4662 | +0.75% |
| 2026-09-19 | 1.4553 | +0.15% |
| 2026-09-18 | 1.4531 | -1.07% |
| 2026-09-17 | 1.4688 | +0.48% |
| 2026-09-16 | 1.4619 | +0.37% |
| 2026-09-15 | 1.4565 | -0.20% |
| 2026-09-14 | 1.4595 | +0.02% |
| 2026-09-13 | 1.4592 | -0.42% |
| 2026-09-12 | 1.4653 | -0.38% |
| Date | 1 RUB in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 1.4709 | +1.57% |
| 2026-09-10 | 1.4481 | +1.27% |
| 2026-09-09 | 1.43 | +0.37% |
| 2026-09-08 | 1.4248 | +0.36% |
| 2026-09-07 | 1.4196 | -0.43% |
| 2026-09-06 | 1.4258 | -0.43% |
| 2026-09-05 | 1.432 | +1.00% |
| 2026-09-04 | 1.4178 | +0.96% |
| 2026-09-03 | 1.4044 | -0.66% |
| 2026-09-02 | 1.4137 | -0.65% |
| 2026-09-01 | 1.4229 | -1.09% |
| 2026-08-31 | 1.4386 | +0.45% |
| 2026-08-30 | 1.4323 | +0.12% |
| 2026-08-29 | 1.4305 | -0.72% |
| 2026-08-28 | 1.4409 | — |
RUB to BDT conversion table
1 RUB1.4487 BDT
5 RUB7.2437 BDT
10 RUB14.4874 BDT
25 RUB36.2184 BDT
50 RUB72.4368 BDT
100 RUB144.8735 BDT
500 RUB724.3676 BDT
1,000 RUB1,448.7351 BDT
5,000 RUB7,243.6757 BDT
10,000 RUB14,487.351 BDT
Get the RUB/BDT rate in your app
One GET request returns the latest RUB → BDT 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/BDT"fetch('https://rate-api.com/api/v1/pair/RUB/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RUB = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RUB/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RUB = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RUB/BDT');
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']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "RUB",
"to": "BDT"
},
"rate": 1.4487,
"timestamp": 1790429297,
"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
BDT to RUBBangladeshi Taka → Russian Ruble0.69026Convert RUB to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.