Convert BHD to USD
Bahraini Dinar → US Dollar
1 BHD = 2.659575 USD(1 USD = 0.376 BHD)
Currency converter
1 BHD =
2.6596 USD
BHD to USD: last 30 days
Over the last 30 days, 1 BHD traded between 2.6531 and 2.6596 USD, averaging 2.6594 USD. The BHD/USD rate has not changed since 2026-08-28.
- 30-day high
- 2.6596
- 2026-08-28
- 30-day low
- 2.6531
- 2026-09-18
- 30-day average
- 2.6594
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
2.6596
2.65312026-08-28 → 2026-09-26
| Date | 1 BHD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 2.6596 | 0.00% |
| 2026-09-25 | 2.6596 | 0.00% |
| 2026-09-24 | 2.6596 | 0.00% |
| 2026-09-23 | 2.6596 | 0.00% |
| 2026-09-22 | 2.6596 | 0.00% |
| 2026-09-21 | 2.6596 | 0.00% |
| 2026-09-20 | 2.6596 | 0.00% |
| 2026-09-19 | 2.6596 | +0.24% |
| 2026-09-18 | 2.6531 | -0.24% |
| 2026-09-17 | 2.6596 | 0.00% |
| 2026-09-16 | 2.6596 | 0.00% |
| 2026-09-15 | 2.6596 | 0.00% |
| 2026-09-14 | 2.6596 | 0.00% |
| 2026-09-13 | 2.6596 | 0.00% |
| 2026-09-12 | 2.6596 | 0.00% |
| Date | 1 BHD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 2.6596 | 0.00% |
| 2026-09-10 | 2.6596 | 0.00% |
| 2026-09-09 | 2.6596 | 0.00% |
| 2026-09-08 | 2.6596 | 0.00% |
| 2026-09-07 | 2.6596 | 0.00% |
| 2026-09-06 | 2.6596 | 0.00% |
| 2026-09-05 | 2.6596 | 0.00% |
| 2026-09-04 | 2.6596 | 0.00% |
| 2026-09-03 | 2.6596 | 0.00% |
| 2026-09-02 | 2.6596 | 0.00% |
| 2026-09-01 | 2.6596 | 0.00% |
| 2026-08-31 | 2.6596 | 0.00% |
| 2026-08-30 | 2.6596 | 0.00% |
| 2026-08-29 | 2.6596 | 0.00% |
| 2026-08-28 | 2.6596 | — |
BHD to USD conversion table
1 BHD2.6596 USD
5 BHD13.2979 USD
10 BHD26.5957 USD
25 BHD66.4894 USD
50 BHD132.9787 USD
100 BHD265.9575 USD
500 BHD1,329.7872 USD
1,000 BHD2,659.5745 USD
5,000 BHD13,297.872 USD
10,000 BHD26,595.745 USD
Get the BHD/USD rate in your app
One GET request returns the latest BHD → USD 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/USD"fetch('https://rate-api.com/api/v1/pair/BHD/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BHD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BHD/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BHD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BHD/USD');
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']} USD\n";Example response
{
"success": true,
"pair": {
"from": "BHD",
"to": "USD"
},
"rate": 2.6596,
"timestamp": 1790435058,
"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
USD to BHDUS Dollar → Bahraini Dinar0.376Convert BHD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.