Convert USD to BDT
US Dollar → Bangladeshi Taka
1 USD = 122.98685 BDT(1 BDT = 0.00813095 USD)
Currency converter
1 USD =
122.9869 BDT
USD to BDT: last 30 days
Over the last 30 days, 1 USD traded between 122.6026 and 123.7185 BDT, averaging 123.0717 BDT. The USD/BDT rate is down 0.24% since 2026-08-29.
- 30-day high
- 123.7185
- 2026-09-17
- 30-day low
- 122.6026
- 2026-09-03
- 30-day average
- 123.0717
- Days with data: 30
- 30-day change
- -0.24%
- since 2026-08-29
123.7185
122.60262026-08-29 → 2026-09-27
| Date | 1 USD in BDT | Daily change |
|---|---|---|
| 2026-09-27 | 122.9869 | 0.00% |
| 2026-09-26 | 122.9869 | -0.14% |
| 2026-09-25 | 123.1614 | -0.00% |
| 2026-09-24 | 123.165 | +0.18% |
| 2026-09-23 | 122.9472 | +0.04% |
| 2026-09-22 | 122.8919 | +0.07% |
| 2026-09-21 | 122.8059 | -0.39% |
| 2026-09-20 | 123.2871 | +0.38% |
| 2026-09-19 | 122.8258 | +0.03% |
| 2026-09-18 | 122.788 | -0.75% |
| 2026-09-17 | 123.7185 | +0.51% |
| 2026-09-16 | 123.0847 | -0.01% |
| 2026-09-15 | 123.0913 | -0.23% |
| 2026-09-14 | 123.376 | +0.32% |
| 2026-09-13 | 122.9882 | -0.31% |
| Date | 1 USD in BDT | Daily change |
|---|---|---|
| 2026-09-12 | 123.3659 | -0.10% |
| 2026-09-11 | 123.4947 | +0.33% |
| 2026-09-10 | 123.0828 | +0.26% |
| 2026-09-09 | 122.7628 | -0.09% |
| 2026-09-08 | 122.8675 | -0.07% |
| 2026-09-07 | 122.9579 | -0.37% |
| 2026-09-06 | 123.4152 | +0.42% |
| 2026-09-05 | 122.8947 | +0.02% |
| 2026-09-04 | 122.868 | +0.22% |
| 2026-09-03 | 122.6026 | -0.12% |
| 2026-09-02 | 122.7451 | -0.06% |
| 2026-09-01 | 122.8246 | -0.69% |
| 2026-08-31 | 123.6801 | +0.39% |
| 2026-08-30 | 123.2014 | -0.07% |
| 2026-08-29 | 123.2821 | — |
USD to BDT conversion table
1 USD122.9869 BDT
5 USD614.9342 BDT
10 USD1,229.8685 BDT
25 USD3,074.6712 BDT
50 USD6,149.3424 BDT
100 USD12,298.685 BDT
500 USD61,493.424 BDT
1,000 USD122,986.85 BDT
5,000 USD614,934.24 BDT
10,000 USD1,229,868.5 BDT
Get the USD/BDT rate in your app
One GET request returns the latest USD → 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/USD/BDT"fetch('https://rate-api.com/api/v1/pair/USD/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BDT');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BDT"
},
"rate": 122.9868,
"timestamp": 1790470775,
"date": "2026-09-27"
}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 USDBangladeshi Taka → US Dollar0.008131Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.