Convert AUD to BHD
Australian Dollar → Bahraini Dinar
1 AUD = 0.264336 BHD(1 BHD = 3.783066 AUD)
Currency converter
1 AUD =
0.26434 BHD
AUD to BHD: last 30 days
Over the last 30 days, 1 AUD traded between 0.2642 and 0.27166 BHD, averaging 0.26881 BHD. The AUD/BHD rate is down 2.29% since 2026-08-28.
- 30-day high
- 0.27166
- 2026-09-09
- 30-day low
- 0.2642
- 2026-09-24
- 30-day average
- 0.26881
- Days with data: 30
- 30-day change
- -2.29%
- since 2026-08-28
0.27166
0.26422026-08-28 → 2026-09-26
| Date | 1 AUD in BHD | Daily change |
|---|---|---|
| 2026-09-26 | 0.26434 | 0.00% |
| 2026-09-25 | 0.26434 | +0.05% |
| 2026-09-24 | 0.2642 | -0.58% |
| 2026-09-23 | 0.26573 | -0.60% |
| 2026-09-22 | 0.26735 | -0.38% |
| 2026-09-21 | 0.26838 | +0.25% |
| 2026-09-20 | 0.26771 | 0.00% |
| 2026-09-19 | 0.26771 | -0.24% |
| 2026-09-18 | 0.26836 | +0.33% |
| 2026-09-17 | 0.26748 | -0.26% |
| 2026-09-16 | 0.26817 | +0.09% |
| 2026-09-15 | 0.26792 | -0.06% |
| 2026-09-14 | 0.26807 | -0.60% |
| 2026-09-13 | 0.26969 | 0.00% |
| 2026-09-12 | 0.26969 | 0.00% |
| Date | 1 AUD in BHD | Daily change |
|---|---|---|
| 2026-09-11 | 0.26969 | -0.17% |
| 2026-09-10 | 0.27015 | -0.55% |
| 2026-09-09 | 0.27166 | +0.14% |
| 2026-09-08 | 0.27126 | 0.00% |
| 2026-09-07 | 0.27126 | +0.15% |
| 2026-09-06 | 0.27085 | 0.00% |
| 2026-09-05 | 0.27085 | 0.00% |
| 2026-09-04 | 0.27085 | +0.14% |
| 2026-09-03 | 0.27046 | +0.64% |
| 2026-09-02 | 0.26874 | +0.09% |
| 2026-09-01 | 0.26851 | -0.29% |
| 2026-08-31 | 0.26928 | -0.46% |
| 2026-08-30 | 0.27052 | 0.00% |
| 2026-08-29 | 0.27052 | 0.00% |
| 2026-08-28 | 0.27052 | — |
AUD to BHD conversion table
1 AUD0.26434 BHD
5 AUD1.3217 BHD
10 AUD2.6434 BHD
25 AUD6.6084 BHD
50 AUD13.2168 BHD
100 AUD26.4336 BHD
500 AUD132.1679 BHD
1,000 AUD264.3359 BHD
5,000 AUD1,321.6794 BHD
10,000 AUD2,643.3588 BHD
Get the AUD/BHD rate in your app
One GET request returns the latest AUD → BHD 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/BHD"fetch('https://rate-api.com/api/v1/pair/AUD/BHD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} BHD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/BHD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} BHD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/BHD');
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']} BHD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "BHD"
},
"rate": 0.2643,
"timestamp": 1790429297,
"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
BHD to AUDBahraini Dinar → Australian Dollar3.7831Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.