Convert BDT to INR
Bangladeshi Taka → Indian Rupee
1 BDT = 0.777982 INR(1 INR = 1.285377 BDT)
Currency converter
1 BDT =
0.77798 INR
BDT to INR: last 30 days
Over the last 30 days, 1 BDT traded between 0.76563 and 0.78086 INR, averaging 0.77497 INR. The BDT/INR rate is up 0.44% since 2026-08-28.
- 30-day high
- 0.78086
- 2026-09-18
- 30-day low
- 0.76563
- 2026-09-06
- 30-day average
- 0.77497
- Days with data: 30
- 30-day change
- +0.44%
- since 2026-08-28
0.78086
0.765632026-08-28 → 2026-09-26
| Date | 1 BDT in INR | Daily change |
|---|---|---|
| 2026-09-26 | 0.77798 | 0.00% |
| 2026-09-25 | 0.77798 | -0.15% |
| 2026-09-24 | 0.77912 | +0.05% |
| 2026-09-23 | 0.77872 | +0.11% |
| 2026-09-22 | 0.77784 | -0.31% |
| 2026-09-21 | 0.78026 | +0.33% |
| 2026-09-20 | 0.7777 | -0.37% |
| 2026-09-19 | 0.78062 | -0.03% |
| 2026-09-18 | 0.78086 | +0.69% |
| 2026-09-17 | 0.77547 | -0.53% |
| 2026-09-16 | 0.77963 | +0.01% |
| 2026-09-15 | 0.77958 | +0.65% |
| 2026-09-14 | 0.77454 | -0.31% |
| 2026-09-13 | 0.77699 | +0.31% |
| 2026-09-12 | 0.77461 | +0.10% |
| Date | 1 BDT in INR | Daily change |
|---|---|---|
| 2026-09-11 | 0.7738 | -0.21% |
| 2026-09-10 | 0.77541 | +0.09% |
| 2026-09-09 | 0.77475 | +0.38% |
| 2026-09-08 | 0.77181 | +0.43% |
| 2026-09-07 | 0.76847 | +0.37% |
| 2026-09-06 | 0.76563 | -0.42% |
| 2026-09-05 | 0.76887 | -0.02% |
| 2026-09-04 | 0.76904 | -0.22% |
| 2026-09-03 | 0.7707 | -0.39% |
| 2026-09-02 | 0.77372 | +0.09% |
| 2026-09-01 | 0.77305 | +0.46% |
| 2026-08-31 | 0.76949 | -0.62% |
| 2026-08-30 | 0.77426 | +0.07% |
| 2026-08-29 | 0.77375 | -0.10% |
| 2026-08-28 | 0.77455 | — |
BDT to INR conversion table
1 BDT0.77798 INR
5 BDT3.8899 INR
10 BDT7.7798 INR
25 BDT19.4495 INR
50 BDT38.8991 INR
100 BDT77.7982 INR
500 BDT388.9909 INR
1,000 BDT777.9817 INR
5,000 BDT3,889.9085 INR
10,000 BDT7,779.8171 INR
Get the BDT/INR rate in your app
One GET request returns the latest BDT → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/BDT/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BDT = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BDT/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BDT = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BDT/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "BDT",
"to": "INR"
},
"rate": 0.778,
"timestamp": 1790435133,
"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
INR to BDTIndian Rupee → Bangladeshi Taka1.2854Convert BDT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.