Convert USD to BZD
US Dollar → Belize Dollar
1 USD = 2 BZD(1 BZD = 0.5 USD)
Currency converter
1 USD =
2 BZD
USD to BZD: last 30 days
Over the last 30 days, 1 USD traded between 2 and 2.0239 BZD, averaging 2.0128 BZD. The USD/BZD rate is down 0.56% since 2026-08-28.
- 30-day high
- 2.0239
- 2026-09-17
- 30-day low
- 2
- 2026-09-23
- 30-day average
- 2.0128
- Days with data: 30
- 30-day change
- -0.56%
- since 2026-08-28
2.0239
22026-08-28 → 2026-09-26
| Date | 1 USD in BZD | Daily change |
|---|---|---|
| 2026-09-26 | 2 | 0.00% |
| 2026-09-25 | 2 | 0.00% |
| 2026-09-24 | 2 | 0.00% |
| 2026-09-23 | 2 | -0.67% |
| 2026-09-22 | 2.0135 | +0.03% |
| 2026-09-21 | 2.0129 | -0.17% |
| 2026-09-20 | 2.0164 | +0.10% |
| 2026-09-19 | 2.0144 | +0.17% |
| 2026-09-18 | 2.011 | -0.64% |
| 2026-09-17 | 2.0239 | +0.50% |
| 2026-09-16 | 2.0138 | +0.05% |
| 2026-09-15 | 2.0128 | -0.04% |
| 2026-09-14 | 2.0136 | -0.13% |
| 2026-09-13 | 2.0162 | +0.07% |
| 2026-09-12 | 2.0147 | -0.33% |
| Date | 1 USD in BZD | Daily change |
|---|---|---|
| 2026-09-11 | 2.0213 | +0.42% |
| 2026-09-10 | 2.0129 | +0.08% |
| 2026-09-09 | 2.0114 | -0.06% |
| 2026-09-08 | 2.0127 | -0.05% |
| 2026-09-07 | 2.0137 | -0.17% |
| 2026-09-06 | 2.0172 | +0.13% |
| 2026-09-05 | 2.0146 | +0.18% |
| 2026-09-04 | 2.0111 | -0.10% |
| 2026-09-03 | 2.0131 | -0.06% |
| 2026-09-02 | 2.0144 | +0.13% |
| 2026-09-01 | 2.0117 | -0.57% |
| 2026-08-31 | 2.0232 | +0.32% |
| 2026-08-30 | 2.0167 | +0.09% |
| 2026-08-29 | 2.0148 | +0.17% |
| 2026-08-28 | 2.0113 | — |
USD to BZD conversion table
1 USD2 BZD
5 USD10 BZD
10 USD20 BZD
25 USD50 BZD
50 USD100 BZD
100 USD200 BZD
500 USD1,000 BZD
1,000 USD2,000 BZD
5,000 USD10,000 BZD
10,000 USD20,000 BZD
Get the USD/BZD rate in your app
One GET request returns the latest USD → BZD 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/USD/BZD"fetch('https://rate-api.com/api/v1/pair/USD/BZD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BZD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BZD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BZD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BZD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} BZD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BZD"
},
"rate": 2,
"timestamp": 1790437898,
"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
BZD to USDBelize Dollar → US Dollar0.5Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.