Convert BHD to AUD
Bahraini Dinar → Australian Dollar
1 BHD = 3.783066 AUD(1 AUD = 0.264336 BHD)
Currency converter
1 BHD =
3.7831 AUD
BHD to AUD: last 30 days
Over the last 30 days, 1 BHD traded between 3.6811 and 3.785 AUD, averaging 3.7203 AUD. The BHD/AUD rate is up 2.34% since 2026-08-28.
- 30-day high
- 3.785
- 2026-09-24
- 30-day low
- 3.6811
- 2026-09-09
- 30-day average
- 3.7203
- Days with data: 30
- 30-day change
- +2.34%
- since 2026-08-28
3.785
3.68112026-08-28 → 2026-09-26
| Date | 1 BHD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 3.7831 | 0.00% |
| 2026-09-25 | 3.7831 | -0.05% |
| 2026-09-24 | 3.785 | +0.58% |
| 2026-09-23 | 3.7632 | +0.61% |
| 2026-09-22 | 3.7404 | +0.39% |
| 2026-09-21 | 3.7261 | -0.25% |
| 2026-09-20 | 3.7354 | 0.00% |
| 2026-09-19 | 3.7354 | +0.24% |
| 2026-09-18 | 3.7263 | -0.33% |
| 2026-09-17 | 3.7386 | +0.26% |
| 2026-09-16 | 3.729 | -0.09% |
| 2026-09-15 | 3.7324 | +0.06% |
| 2026-09-14 | 3.7303 | +0.60% |
| 2026-09-13 | 3.708 | 0.00% |
| 2026-09-12 | 3.708 | 0.00% |
| Date | 1 BHD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 3.708 | +0.17% |
| 2026-09-10 | 3.7016 | +0.56% |
| 2026-09-09 | 3.6811 | -0.14% |
| 2026-09-08 | 3.6864 | 0.00% |
| 2026-09-07 | 3.6864 | -0.15% |
| 2026-09-06 | 3.692 | 0.00% |
| 2026-09-05 | 3.692 | 0.00% |
| 2026-09-04 | 3.692 | -0.14% |
| 2026-09-03 | 3.6973 | -0.64% |
| 2026-09-02 | 3.721 | -0.09% |
| 2026-09-01 | 3.7242 | +0.29% |
| 2026-08-31 | 3.7136 | +0.46% |
| 2026-08-30 | 3.6965 | 0.00% |
| 2026-08-29 | 3.6965 | 0.00% |
| 2026-08-28 | 3.6965 | — |
BHD to AUD conversion table
1 BHD3.7831 AUD
5 BHD18.9153 AUD
10 BHD37.8307 AUD
25 BHD94.5766 AUD
50 BHD189.1533 AUD
100 BHD378.3066 AUD
500 BHD1,891.5328 AUD
1,000 BHD3,783.0657 AUD
5,000 BHD18,915.328 AUD
10,000 BHD37,830.657 AUD
Get the BHD/AUD rate in your app
One GET request returns the latest BHD → 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/BHD/AUD"fetch('https://rate-api.com/api/v1/pair/BHD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BHD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BHD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BHD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BHD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BHD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "BHD",
"to": "AUD"
},
"rate": 3.7831,
"timestamp": 1790432059,
"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 BHDAustralian Dollar → Bahraini Dinar0.26434Convert BHD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.