Convert BHD to GBP
Bahraini Dinar → British Pound
1 BHD = 2.006867 GBP(1 GBP = 0.498289 BHD)
Currency converter
1 BHD =
2.0069 GBP
BHD to GBP: last 30 days
Over the last 30 days, 1 BHD traded between 1.9581 and 2.0118 GBP, averaging 1.9765 GBP. The BHD/GBP rate is up 2.49% since 2026-08-28.
- 30-day high
- 2.0118
- 2026-09-24
- 30-day low
- 1.9581
- 2026-08-28
- 30-day average
- 1.9765
- Days with data: 30
- 30-day change
- +2.49%
- since 2026-08-28
2.0118
1.95812026-08-28 → 2026-09-26
| Date | 1 BHD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 2.0069 | 0.00% |
| 2026-09-25 | 2.0069 | -0.25% |
| 2026-09-24 | 2.0118 | +0.43% |
| 2026-09-23 | 2.0032 | +0.65% |
| 2026-09-22 | 1.9902 | +0.24% |
| 2026-09-21 | 1.9855 | -0.38% |
| 2026-09-20 | 1.9931 | 0.00% |
| 2026-09-19 | 1.9931 | +0.24% |
| 2026-09-18 | 1.9882 | -0.00% |
| 2026-09-17 | 1.9882 | +0.59% |
| 2026-09-16 | 1.9765 | +0.20% |
| 2026-09-15 | 1.9725 | +0.08% |
| 2026-09-14 | 1.9709 | +0.10% |
| 2026-09-13 | 1.9689 | 0.00% |
| 2026-09-12 | 1.9689 | 0.00% |
| Date | 1 BHD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 1.9689 | +0.09% |
| 2026-09-10 | 1.9671 | +0.33% |
| 2026-09-09 | 1.9606 | -0.14% |
| 2026-09-08 | 1.9634 | -0.11% |
| 2026-09-07 | 1.9656 | -0.01% |
| 2026-09-06 | 1.9657 | 0.00% |
| 2026-09-05 | 1.9657 | 0.00% |
| 2026-09-04 | 1.9657 | -0.24% |
| 2026-09-03 | 1.9705 | -0.10% |
| 2026-09-02 | 1.9725 | +0.36% |
| 2026-09-01 | 1.9655 | +0.06% |
| 2026-08-31 | 1.9644 | +0.32% |
| 2026-08-30 | 1.9581 | 0.00% |
| 2026-08-29 | 1.9581 | 0.00% |
| 2026-08-28 | 1.9581 | — |
BHD to GBP conversion table
1 BHD2.0069 GBP
5 BHD10.0343 GBP
10 BHD20.0687 GBP
25 BHD50.1717 GBP
50 BHD100.3434 GBP
100 BHD200.6867 GBP
500 BHD1,003.4337 GBP
1,000 BHD2,006.8674 GBP
5,000 BHD10,034.337 GBP
10,000 BHD20,068.674 GBP
Get the BHD/GBP rate in your app
One GET request returns the latest BHD → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/BHD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BHD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BHD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BHD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BHD/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "BHD",
"to": "GBP"
},
"rate": 2.0069,
"timestamp": 1790432120,
"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
GBP to BHDBritish Pound → Bahraini Dinar0.49829Convert BHD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.