Convert BDT to JPY
Bangladeshi Taka → Japanese Yen
1 BDT = 1.279541 JPY(1 JPY = 0.78153 BDT)
Currency converter
1 BDT =
1.2795 JPY
BDT to JPY: last 30 days
Over the last 30 days, 1 BDT traded between 1.2473 and 1.304 JPY, averaging 1.2735 JPY. The BDT/JPY rate is down 1.31% since 2026-08-28.
- 30-day high
- 1.304
- 2026-09-01
- 30-day low
- 1.2473
- 2026-09-11
- 30-day average
- 1.2735
- Days with data: 30
- 30-day change
- -1.31%
- since 2026-08-28
1.304
1.24732026-08-28 → 2026-09-26
| Date | 1 BDT in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 1.2795 | 0.00% |
| 2026-09-25 | 1.2795 | -0.79% |
| 2026-09-24 | 1.2898 | +0.42% |
| 2026-09-23 | 1.2844 | +0.42% |
| 2026-09-22 | 1.279 | -0.13% |
| 2026-09-21 | 1.2806 | -0.00% |
| 2026-09-20 | 1.2807 | -0.37% |
| 2026-09-19 | 1.2855 | -0.03% |
| 2026-09-18 | 1.2859 | +2.18% |
| 2026-09-17 | 1.2584 | -0.10% |
| 2026-09-16 | 1.2597 | +0.04% |
| 2026-09-15 | 1.2592 | +0.52% |
| 2026-09-14 | 1.2527 | +0.02% |
| 2026-09-13 | 1.2525 | +0.31% |
| 2026-09-12 | 1.2486 | +0.10% |
| Date | 1 BDT in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 1.2473 | -0.42% |
| 2026-09-10 | 1.2527 | +0.33% |
| 2026-09-09 | 1.2485 | -0.58% |
| 2026-09-08 | 1.2558 | -0.22% |
| 2026-09-07 | 1.2586 | -0.59% |
| 2026-09-06 | 1.2661 | -0.42% |
| 2026-09-05 | 1.2714 | -0.02% |
| 2026-09-04 | 1.2717 | -0.06% |
| 2026-09-03 | 1.2725 | -2.14% |
| 2026-09-02 | 1.3003 | -0.29% |
| 2026-09-01 | 1.304 | +0.97% |
| 2026-08-31 | 1.2915 | -0.36% |
| 2026-08-30 | 1.2961 | +0.07% |
| 2026-08-29 | 1.2952 | -0.10% |
| 2026-08-28 | 1.2966 | — |
BDT to JPY conversion table
1 BDT1.2795 JPY
5 BDT6.3977 JPY
10 BDT12.7954 JPY
25 BDT31.9885 JPY
50 BDT63.9771 JPY
100 BDT127.9541 JPY
500 BDT639.7706 JPY
1,000 BDT1,279.5412 JPY
5,000 BDT6,397.7061 JPY
10,000 BDT12,795.412 JPY
Get the BDT/JPY rate in your app
One GET request returns the latest BDT → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/BDT/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BDT = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BDT/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BDT = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BDT/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "BDT",
"to": "JPY"
},
"rate": 1.2795,
"timestamp": 1790432074,
"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
JPY to BDTJapanese Yen → Bangladeshi Taka0.78153Convert BDT to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.