Convert BHD to EUR
Bahraini Dinar → Euro
1 BHD = 2.332346 EUR(1 EUR = 0.428753 BHD)
Currency converter
1 BHD =
2.3323 EUR
BHD to EUR: last 30 days
Over the last 30 days, 1 BHD traded between 2.2825 and 2.3397 EUR, averaging 2.3027 EUR. The BHD/EUR rate is up 2.10% since 2026-08-28.
- 30-day high
- 2.3397
- 2026-09-24
- 30-day low
- 2.2825
- 2026-09-09
- 30-day average
- 2.3027
- Days with data: 30
- 30-day change
- +2.10%
- since 2026-08-28
2.3397
2.28252026-08-28 → 2026-09-26
| Date | 1 BHD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 2.3323 | 0.00% |
| 2026-09-25 | 2.3323 | -0.32% |
| 2026-09-24 | 2.3397 | +0.39% |
| 2026-09-23 | 2.3307 | +0.46% |
| 2026-09-22 | 2.3201 | +0.24% |
| 2026-09-21 | 2.3147 | -0.26% |
| 2026-09-20 | 2.3207 | 0.00% |
| 2026-09-19 | 2.3207 | +0.24% |
| 2026-09-18 | 2.3151 | -0.06% |
| 2026-09-17 | 2.3165 | +0.49% |
| 2026-09-16 | 2.3053 | +0.02% |
| 2026-09-15 | 2.3049 | +0.10% |
| 2026-09-14 | 2.3025 | +0.36% |
| 2026-09-13 | 2.2943 | 0.00% |
| 2026-09-12 | 2.2943 | 0.00% |
| Date | 1 BHD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 2.2943 | +0.21% |
| 2026-09-10 | 2.2896 | +0.31% |
| 2026-09-09 | 2.2825 | -0.33% |
| 2026-09-08 | 2.29 | +0.07% |
| 2026-09-07 | 2.2884 | 0.00% |
| 2026-09-06 | 2.2884 | 0.00% |
| 2026-09-05 | 2.2884 | 0.00% |
| 2026-09-04 | 2.2884 | -0.06% |
| 2026-09-03 | 2.2898 | -0.32% |
| 2026-09-02 | 2.2971 | +0.10% |
| 2026-09-01 | 2.2947 | +0.05% |
| 2026-08-31 | 2.2935 | +0.41% |
| 2026-08-30 | 2.2843 | 0.00% |
| 2026-08-29 | 2.2843 | 0.00% |
| 2026-08-28 | 2.2843 | — |
BHD to EUR conversion table
1 BHD2.3323 EUR
5 BHD11.6617 EUR
10 BHD23.3235 EUR
25 BHD58.3087 EUR
50 BHD116.6173 EUR
100 BHD233.2346 EUR
500 BHD1,166.1731 EUR
1,000 BHD2,332.3463 EUR
5,000 BHD11,661.731 EUR
10,000 BHD23,323.463 EUR
Get the BHD/EUR rate in your app
One GET request returns the latest BHD → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/BHD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BHD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BHD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BHD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BHD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "BHD",
"to": "EUR"
},
"rate": 2.3323,
"timestamp": 1790435094,
"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
EUR to BHDEuro → Bahraini Dinar0.42875Convert BHD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.