Convert BMD to AUD
Bermudan Dollar → Australian Dollar
1 BMD = 1.422433 AUD(1 AUD = 0.703021 BMD)
Currency converter
1 BMD =
1.4224 AUD
BMD to AUD: last 30 days
Over the last 30 days, 1 BMD traded between 1.3841 and 1.4232 AUD, averaging 1.399 AUD. The BMD/AUD rate is up 2.34% since 2026-08-28.
- 30-day high
- 1.4232
- 2026-09-24
- 30-day low
- 1.3841
- 2026-09-09
- 30-day average
- 1.399
- Days with data: 30
- 30-day change
- +2.34%
- since 2026-08-28
1.4232
1.38412026-08-28 → 2026-09-26
| Date | 1 BMD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.4224 | 0.00% |
| 2026-09-25 | 1.4224 | -0.05% |
| 2026-09-24 | 1.4232 | +0.58% |
| 2026-09-23 | 1.415 | +0.61% |
| 2026-09-22 | 1.4064 | +0.39% |
| 2026-09-21 | 1.401 | -0.25% |
| 2026-09-20 | 1.4045 | 0.00% |
| 2026-09-19 | 1.4045 | 0.00% |
| 2026-09-18 | 1.4045 | -0.09% |
| 2026-09-17 | 1.4057 | +0.26% |
| 2026-09-16 | 1.4021 | -0.09% |
| 2026-09-15 | 1.4034 | +0.06% |
| 2026-09-14 | 1.4026 | +0.60% |
| 2026-09-13 | 1.3942 | 0.00% |
| 2026-09-12 | 1.3942 | 0.00% |
| Date | 1 BMD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.3942 | +0.17% |
| 2026-09-10 | 1.3918 | +0.56% |
| 2026-09-09 | 1.3841 | -0.14% |
| 2026-09-08 | 1.3861 | 0.00% |
| 2026-09-07 | 1.3861 | -0.15% |
| 2026-09-06 | 1.3882 | 0.00% |
| 2026-09-05 | 1.3882 | 0.00% |
| 2026-09-04 | 1.3882 | -0.14% |
| 2026-09-03 | 1.3902 | -0.64% |
| 2026-09-02 | 1.3991 | -0.09% |
| 2026-09-01 | 1.4003 | +0.29% |
| 2026-08-31 | 1.3963 | +0.46% |
| 2026-08-30 | 1.3899 | 0.00% |
| 2026-08-29 | 1.3899 | 0.00% |
| 2026-08-28 | 1.3899 | — |
BMD to AUD conversion table
1 BMD1.4224 AUD
5 BMD7.1122 AUD
10 BMD14.2243 AUD
25 BMD35.5608 AUD
50 BMD71.1216 AUD
100 BMD142.2433 AUD
500 BMD711.2164 AUD
1,000 BMD1,422.4327 AUD
5,000 BMD7,112.1635 AUD
10,000 BMD14,224.327 AUD
Get the BMD/AUD rate in your app
One GET request returns the latest BMD → AUD 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/BMD/AUD"fetch('https://rate-api.com/api/v1/pair/BMD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BMD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BMD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BMD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BMD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BMD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BMD",
"to": "AUD"
},
"rate": 1.4224,
"timestamp": 1790432034,
"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
AUD to BMDAustralian Dollar → Bermudan Dollar0.70302Convert BMD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.