Convert AUD to BBD
Australian Dollar → Barbadian Dollar
1 AUD = 1.406042 BBD(1 BBD = 0.711216 AUD)
Currency converter
1 AUD =
1.406 BBD
AUD to BBD: last 30 days
Over the last 30 days, 1 AUD traded between 1.4053 and 1.445 BBD, averaging 1.4301 BBD. The AUD/BBD rate is down 2.29% since 2026-08-28.
- 30-day high
- 1.445
- 2026-09-09
- 30-day low
- 1.4053
- 2026-09-24
- 30-day average
- 1.4301
- Days with data: 30
- 30-day change
- -2.29%
- since 2026-08-28
1.445
1.40532026-08-28 → 2026-09-26
| Date | 1 AUD in BBD | Daily change |
|---|---|---|
| 2026-09-26 | 1.406 | 0.00% |
| 2026-09-25 | 1.406 | +0.05% |
| 2026-09-24 | 1.4053 | -0.58% |
| 2026-09-23 | 1.4135 | -0.60% |
| 2026-09-22 | 1.4221 | -0.38% |
| 2026-09-21 | 1.4276 | +0.25% |
| 2026-09-20 | 1.424 | 0.00% |
| 2026-09-19 | 1.424 | -0.69% |
| 2026-09-18 | 1.4339 | +0.78% |
| 2026-09-17 | 1.4228 | -0.26% |
| 2026-09-16 | 1.4264 | +0.09% |
| 2026-09-15 | 1.4251 | -0.06% |
| 2026-09-14 | 1.4259 | -0.60% |
| 2026-09-13 | 1.4345 | 0.00% |
| 2026-09-12 | 1.4345 | 0.00% |
| Date | 1 AUD in BBD | Daily change |
|---|---|---|
| 2026-09-11 | 1.4345 | -0.17% |
| 2026-09-10 | 1.437 | -0.55% |
| 2026-09-09 | 1.445 | +0.14% |
| 2026-09-08 | 1.4429 | 0.00% |
| 2026-09-07 | 1.4429 | +0.15% |
| 2026-09-06 | 1.4407 | 0.00% |
| 2026-09-05 | 1.4407 | 0.00% |
| 2026-09-04 | 1.4407 | +0.14% |
| 2026-09-03 | 1.4386 | +0.64% |
| 2026-09-02 | 1.4295 | +0.09% |
| 2026-09-01 | 1.4283 | -0.29% |
| 2026-08-31 | 1.4324 | -0.46% |
| 2026-08-30 | 1.439 | 0.00% |
| 2026-08-29 | 1.439 | 0.00% |
| 2026-08-28 | 1.439 | — |
AUD to BBD conversion table
1 AUD1.406 BBD
5 AUD7.0302 BBD
10 AUD14.0604 BBD
25 AUD35.151 BBD
50 AUD70.3021 BBD
100 AUD140.6042 BBD
500 AUD703.021 BBD
1,000 AUD1,406.0419 BBD
5,000 AUD7,030.2096 BBD
10,000 AUD14,060.419 BBD
Get the AUD/BBD rate in your app
One GET request returns the latest AUD → BBD 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/BBD"fetch('https://rate-api.com/api/v1/pair/AUD/BBD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} BBD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/BBD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} BBD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/BBD');
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']} BBD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "BBD"
},
"rate": 1.406,
"timestamp": 1790429268,
"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
BBD to AUDBarbadian Dollar → Australian Dollar0.71122Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.