Convert AUD to BND
Australian Dollar → Brunei Dollar
1 AUD = 0.897842 BND(1 BND = 1.113782 AUD)
Currency converter
1 AUD =
0.89784 BND
AUD to BND: last 30 days
Over the last 30 days, 1 AUD traded between 0.89784 and 0.91721 BND, averaging 0.90918 BND. The AUD/BND rate is down 1.81% since 2026-08-28.
- 30-day high
- 0.91721
- 2026-08-29
- 30-day low
- 0.89784
- 2026-09-25
- 30-day average
- 0.90918
- Days with data: 30
- 30-day change
- -1.81%
- since 2026-08-28
0.91721
0.897842026-08-28 → 2026-09-26
| Date | 1 AUD in BND | Daily change |
|---|---|---|
| 2026-09-26 | 0.89784 | 0.00% |
| 2026-09-25 | 0.89784 | -0.17% |
| 2026-09-24 | 0.89936 | -0.45% |
| 2026-09-23 | 0.90344 | -0.38% |
| 2026-09-22 | 0.90692 | -0.39% |
| 2026-09-21 | 0.91044 | +0.21% |
| 2026-09-20 | 0.90852 | +0.01% |
| 2026-09-19 | 0.90847 | +0.01% |
| 2026-09-18 | 0.90835 | +0.04% |
| 2026-09-17 | 0.90799 | +0.00% |
| 2026-09-16 | 0.90798 | +0.18% |
| 2026-09-15 | 0.90637 | +0.18% |
| 2026-09-14 | 0.90475 | -0.43% |
| 2026-09-13 | 0.90869 | +0.01% |
| 2026-09-12 | 0.90863 | -0.13% |
| Date | 1 AUD in BND | Daily change |
|---|---|---|
| 2026-09-11 | 0.90977 | +0.17% |
| 2026-09-10 | 0.90822 | -0.59% |
| 2026-09-09 | 0.91364 | +0.13% |
| 2026-09-08 | 0.91249 | -0.22% |
| 2026-09-07 | 0.9145 | +0.18% |
| 2026-09-06 | 0.91284 | -0.11% |
| 2026-09-05 | 0.91387 | +0.10% |
| 2026-09-04 | 0.91295 | -0.05% |
| 2026-09-03 | 0.91336 | +0.34% |
| 2026-09-02 | 0.91025 | +0.21% |
| 2026-09-01 | 0.90832 | -0.36% |
| 2026-08-31 | 0.91162 | -0.51% |
| 2026-08-30 | 0.91627 | -0.10% |
| 2026-08-29 | 0.91721 | +0.31% |
| 2026-08-28 | 0.9144 | — |
AUD to BND conversion table
1 AUD0.89784 BND
5 AUD4.4892 BND
10 AUD8.9784 BND
25 AUD22.4461 BND
50 AUD44.8921 BND
100 AUD89.7842 BND
500 AUD448.9211 BND
1,000 AUD897.8422 BND
5,000 AUD4,489.2109 BND
10,000 AUD8,978.4217 BND
Get the AUD/BND rate in your app
One GET request returns the latest AUD → BND 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/BND"fetch('https://rate-api.com/api/v1/pair/AUD/BND', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} BND`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/BND",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} BND")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/BND');
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']} BND\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "BND"
},
"rate": 0.8978,
"timestamp": 1790439645,
"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
BND to AUDBrunei Dollar → Australian Dollar1.1138Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.