Convert BND to AUD
Brunei Dollar → Australian Dollar
1 BND = 1.113782 AUD(1 AUD = 0.897842 BND)
Currency converter
1 BND =
1.1138 AUD
BND to AUD: last 30 days
Over the last 30 days, 1 BND traded between 1.0903 and 1.1138 AUD, averaging 1.0999 AUD. The BND/AUD rate is up 1.84% since 2026-08-28.
- 30-day high
- 1.1138
- 2026-09-25
- 30-day low
- 1.0903
- 2026-08-29
- 30-day average
- 1.0999
- Days with data: 30
- 30-day change
- +1.84%
- since 2026-08-28
1.1138
1.09032026-08-28 → 2026-09-26
| Date | 1 BND in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1.1138 | 0.00% |
| 2026-09-25 | 1.1138 | +0.17% |
| 2026-09-24 | 1.1119 | +0.45% |
| 2026-09-23 | 1.1069 | +0.38% |
| 2026-09-22 | 1.1026 | +0.39% |
| 2026-09-21 | 1.0984 | -0.21% |
| 2026-09-20 | 1.1007 | -0.01% |
| 2026-09-19 | 1.1007 | -0.01% |
| 2026-09-18 | 1.1009 | -0.04% |
| 2026-09-17 | 1.1013 | -0.00% |
| 2026-09-16 | 1.1013 | -0.18% |
| 2026-09-15 | 1.1033 | -0.18% |
| 2026-09-14 | 1.1053 | +0.44% |
| 2026-09-13 | 1.1005 | -0.01% |
| 2026-09-12 | 1.1006 | +0.13% |
| Date | 1 BND in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.0992 | -0.17% |
| 2026-09-10 | 1.1011 | +0.60% |
| 2026-09-09 | 1.0945 | -0.13% |
| 2026-09-08 | 1.0959 | +0.22% |
| 2026-09-07 | 1.0935 | -0.18% |
| 2026-09-06 | 1.0955 | +0.11% |
| 2026-09-05 | 1.0942 | -0.10% |
| 2026-09-04 | 1.0953 | +0.05% |
| 2026-09-03 | 1.0949 | -0.34% |
| 2026-09-02 | 1.0986 | -0.21% |
| 2026-09-01 | 1.1009 | +0.36% |
| 2026-08-31 | 1.097 | +0.51% |
| 2026-08-30 | 1.0914 | +0.10% |
| 2026-08-29 | 1.0903 | -0.31% |
| 2026-08-28 | 1.0936 | — |
BND to AUD conversion table
1 BND1.1138 AUD
5 BND5.5689 AUD
10 BND11.1378 AUD
25 BND27.8445 AUD
50 BND55.6891 AUD
100 BND111.3782 AUD
500 BND556.8908 AUD
1,000 BND1,113.7815 AUD
5,000 BND5,568.9075 AUD
10,000 BND11,137.815 AUD
Get the BND/AUD rate in your app
One GET request returns the latest BND → 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/BND/AUD"fetch('https://rate-api.com/api/v1/pair/BND/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BND = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BND/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BND = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BND/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BND = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BND",
"to": "AUD"
},
"rate": 1.1138,
"timestamp": 1790432060,
"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 BNDAustralian Dollar → Brunei Dollar0.89784Convert BND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.