Convert BDT to RUB
Bangladeshi Taka → Russian Ruble
1 BDT = 0.690257 RUB(1 RUB = 1.448735 BDT)
Currency converter
1 BDT =
0.69026 RUB
BDT to RUB: last 30 days
Over the last 30 days, 1 BDT traded between 0.67987 and 0.71203 RUB, averaging 0.69244 RUB. The BDT/RUB rate is down 0.54% since 2026-08-28.
- 30-day high
- 0.71203
- 2026-09-03
- 30-day low
- 0.67987
- 2026-09-11
- 30-day average
- 0.69244
- Days with data: 30
- 30-day change
- -0.54%
- since 2026-08-28
0.71203
0.679872026-08-28 → 2026-09-26
| Date | 1 BDT in RUB | Daily change |
|---|---|---|
| 2026-09-26 | 0.69026 | 0.00% |
| 2026-09-25 | 0.69026 | +0.21% |
| 2026-09-24 | 0.68883 | +0.47% |
| 2026-09-23 | 0.68564 | +0.60% |
| 2026-09-22 | 0.68156 | -0.55% |
| 2026-09-21 | 0.68535 | +0.49% |
| 2026-09-20 | 0.68203 | -0.74% |
| 2026-09-19 | 0.68713 | -0.15% |
| 2026-09-18 | 0.68818 | +1.08% |
| 2026-09-17 | 0.68081 | -0.48% |
| 2026-09-16 | 0.68406 | -0.37% |
| 2026-09-15 | 0.68658 | +0.20% |
| 2026-09-14 | 0.68517 | -0.02% |
| 2026-09-13 | 0.68531 | +0.42% |
| 2026-09-12 | 0.68245 | +0.38% |
| Date | 1 BDT in RUB | Daily change |
|---|---|---|
| 2026-09-11 | 0.67987 | -1.55% |
| 2026-09-10 | 0.69056 | -1.25% |
| 2026-09-09 | 0.6993 | -0.37% |
| 2026-09-08 | 0.70187 | -0.36% |
| 2026-09-07 | 0.7044 | +0.43% |
| 2026-09-06 | 0.70136 | +0.43% |
| 2026-09-05 | 0.69835 | -0.99% |
| 2026-09-04 | 0.7053 | -0.95% |
| 2026-09-03 | 0.71203 | +0.66% |
| 2026-09-02 | 0.70736 | +0.65% |
| 2026-09-01 | 0.70279 | +1.11% |
| 2026-08-31 | 0.6951 | -0.44% |
| 2026-08-30 | 0.6982 | -0.12% |
| 2026-08-29 | 0.69904 | +0.73% |
| 2026-08-28 | 0.69401 | — |
BDT to RUB conversion table
1 BDT0.69026 RUB
5 BDT3.4513 RUB
10 BDT6.9026 RUB
25 BDT17.2564 RUB
50 BDT34.5129 RUB
100 BDT69.0257 RUB
500 BDT345.1287 RUB
1,000 BDT690.2573 RUB
5,000 BDT3,451.2865 RUB
10,000 BDT6,902.5729 RUB
Get the BDT/RUB rate in your app
One GET request returns the latest BDT → 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/BDT/RUB"fetch('https://rate-api.com/api/v1/pair/BDT/RUB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BDT = ${data.rate} RUB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BDT/RUB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BDT = {data['rate']} RUB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BDT/RUB');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BDT = {$data['rate']} RUB\n";Example response
{
"success": true,
"pair": {
"from": "BDT",
"to": "RUB"
},
"rate": 0.6903,
"timestamp": 1790432062,
"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 BDTRussian Ruble → Bangladeshi Taka1.4487Convert BDT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.