Convert AUD to BDT
Australian Dollar → Bangladeshi Taka
1 AUD = 86.585057 BDT(1 BDT = 0.0115493 AUD)
Currency converter
1 AUD =
86.5851 BDT
AUD to BDT: last 30 days
Over the last 30 days, 1 AUD traded between 86.5436 and 88.903 BDT, averaging 87.9874 BDT. The AUD/BDT rate is down 2.28% since 2026-08-28.
- 30-day high
- 88.903
- 2026-09-06
- 30-day low
- 86.5436
- 2026-09-24
- 30-day average
- 87.9874
- Days with data: 30
- 30-day change
- -2.28%
- since 2026-08-28
88.903
86.54362026-08-28 → 2026-09-26
| Date | 1 AUD in BDT | Daily change |
|---|---|---|
| 2026-09-26 | 86.5851 | 0.00% |
| 2026-09-25 | 86.5851 | +0.05% |
| 2026-09-24 | 86.5436 | -0.40% |
| 2026-09-23 | 86.8915 | -0.56% |
| 2026-09-22 | 87.3805 | -0.31% |
| 2026-09-21 | 87.6559 | -0.14% |
| 2026-09-20 | 87.78 | +0.38% |
| 2026-09-19 | 87.4516 | +0.03% |
| 2026-09-18 | 87.4247 | -0.67% |
| 2026-09-17 | 88.012 | +0.26% |
| 2026-09-16 | 87.7859 | +0.09% |
| 2026-09-15 | 87.7093 | -0.29% |
| 2026-09-14 | 87.9624 | -0.29% |
| 2026-09-13 | 88.2142 | -0.31% |
| 2026-09-12 | 88.4851 | -0.10% |
| Date | 1 AUD in BDT | Daily change |
|---|---|---|
| 2026-09-11 | 88.5775 | +0.16% |
| 2026-09-10 | 88.4342 | -0.29% |
| 2026-09-09 | 88.695 | +0.06% |
| 2026-09-08 | 88.6426 | -0.07% |
| 2026-09-07 | 88.7078 | -0.22% |
| 2026-09-06 | 88.903 | +0.42% |
| 2026-09-05 | 88.5281 | +0.02% |
| 2026-09-04 | 88.5089 | +0.36% |
| 2026-09-03 | 88.1906 | +0.52% |
| 2026-09-02 | 87.7315 | +0.02% |
| 2026-09-01 | 87.7131 | -0.98% |
| 2026-08-31 | 88.577 | -0.07% |
| 2026-08-30 | 88.6405 | -0.07% |
| 2026-08-29 | 88.6985 | +0.10% |
| 2026-08-28 | 88.6071 | — |
AUD to BDT conversion table
1 AUD86.5851 BDT
5 AUD432.9253 BDT
10 AUD865.8506 BDT
25 AUD2,164.6264 BDT
50 AUD4,329.2529 BDT
100 AUD8,658.5057 BDT
500 AUD43,292.529 BDT
1,000 AUD86,585.057 BDT
5,000 AUD432,925.29 BDT
10,000 AUD865,850.57 BDT
Get the AUD/BDT rate in your app
One GET request returns the latest AUD → 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/AUD/BDT"fetch('https://rate-api.com/api/v1/pair/AUD/BDT', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} BDT`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/BDT",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} BDT")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/BDT');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} BDT\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "BDT"
},
"rate": 86.5851,
"timestamp": 1790432064,
"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 AUDBangladeshi Taka → Australian Dollar0.011549Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.