Convert BZD to AUD
Belize Dollar → Australian Dollar
1 BZD = 0.711216 AUD(1 AUD = 1.406042 BZD)
Currency converter
1 BZD =
0.71122 AUD
BZD to AUD: last 30 days
Over the last 30 days, 1 BZD traded between 0.68814 and 0.71158 AUD, averaging 0.69506 AUD. The BZD/AUD rate is up 2.92% since 2026-08-28.
- 30-day high
- 0.71158
- 2026-09-24
- 30-day low
- 0.68814
- 2026-09-09
- 30-day average
- 0.69506
- Days with data: 30
- 30-day change
- +2.92%
- since 2026-08-28
0.71158
0.688142026-08-28 → 2026-09-26
| Date | 1 BZD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.71122 | 0.00% |
| 2026-09-25 | 0.71122 | -0.05% |
| 2026-09-24 | 0.71158 | +0.58% |
| 2026-09-23 | 0.70748 | +1.29% |
| 2026-09-22 | 0.69849 | +0.36% |
| 2026-09-21 | 0.696 | -0.08% |
| 2026-09-20 | 0.69653 | -0.10% |
| 2026-09-19 | 0.69724 | -0.17% |
| 2026-09-18 | 0.69842 | +0.56% |
| 2026-09-17 | 0.69455 | -0.24% |
| 2026-09-16 | 0.69626 | -0.14% |
| 2026-09-15 | 0.69725 | +0.10% |
| 2026-09-14 | 0.69658 | +0.73% |
| 2026-09-13 | 0.69151 | -0.07% |
| 2026-09-12 | 0.69201 | +0.33% |
| Date | 1 BZD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.68975 | -0.24% |
| 2026-09-10 | 0.69144 | +0.48% |
| 2026-09-09 | 0.68814 | -0.08% |
| 2026-09-08 | 0.68869 | +0.05% |
| 2026-09-07 | 0.68835 | +0.02% |
| 2026-09-06 | 0.68819 | -0.13% |
| 2026-09-05 | 0.68906 | -0.18% |
| 2026-09-04 | 0.69028 | -0.04% |
| 2026-09-03 | 0.69057 | -0.58% |
| 2026-09-02 | 0.69457 | -0.22% |
| 2026-09-01 | 0.69609 | +0.86% |
| 2026-08-31 | 0.69016 | +0.14% |
| 2026-08-30 | 0.6892 | -0.09% |
| 2026-08-29 | 0.68985 | -0.17% |
| 2026-08-28 | 0.69104 | — |
BZD to AUD conversion table
1 BZD0.71122 AUD
5 BZD3.5561 AUD
10 BZD7.1122 AUD
25 BZD17.7804 AUD
50 BZD35.5608 AUD
100 BZD71.1216 AUD
500 BZD355.6082 AUD
1,000 BZD711.2164 AUD
5,000 BZD3,556.0817 AUD
10,000 BZD7,112.1635 AUD
Get the BZD/AUD rate in your app
One GET request returns the latest BZD → 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/BZD/AUD"fetch('https://rate-api.com/api/v1/pair/BZD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BZD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BZD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BZD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BZD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BZD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BZD",
"to": "AUD"
},
"rate": 0.7112,
"timestamp": 1790432095,
"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 BZDAustralian Dollar → Belize Dollar1.406Convert BZD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.