Convert GBP to BHD
British Pound → Bahraini Dinar
1 GBP = 0.498289 BHD(1 BHD = 2.006867 GBP)
Currency converter
1 GBP =
0.49829 BHD
GBP to BHD: last 30 days
Over the last 30 days, 1 GBP traded between 0.49706 and 0.5107 BHD, averaging 0.50598 BHD. The GBP/BHD rate is down 2.43% since 2026-08-28.
- 30-day high
- 0.5107
- 2026-08-28
- 30-day low
- 0.49706
- 2026-09-24
- 30-day average
- 0.50598
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
0.5107
0.497062026-08-28 → 2026-09-26
| Date | 1 GBP in BHD | Daily change |
|---|---|---|
| 2026-09-26 | 0.49829 | 0.00% |
| 2026-09-25 | 0.49829 | +0.25% |
| 2026-09-24 | 0.49706 | -0.43% |
| 2026-09-23 | 0.49919 | -0.65% |
| 2026-09-22 | 0.50246 | -0.24% |
| 2026-09-21 | 0.50364 | +0.38% |
| 2026-09-20 | 0.50174 | 0.00% |
| 2026-09-19 | 0.50174 | -0.24% |
| 2026-09-18 | 0.50296 | +0.00% |
| 2026-09-17 | 0.50296 | -0.59% |
| 2026-09-16 | 0.50594 | -0.20% |
| 2026-09-15 | 0.50697 | -0.08% |
| 2026-09-14 | 0.5074 | -0.10% |
| 2026-09-13 | 0.5079 | 0.00% |
| 2026-09-12 | 0.5079 | 0.00% |
| Date | 1 GBP in BHD | Daily change |
|---|---|---|
| 2026-09-11 | 0.5079 | -0.09% |
| 2026-09-10 | 0.50836 | -0.33% |
| 2026-09-09 | 0.51004 | +0.14% |
| 2026-09-08 | 0.50931 | +0.11% |
| 2026-09-07 | 0.50875 | +0.01% |
| 2026-09-06 | 0.50873 | 0.00% |
| 2026-09-05 | 0.50873 | 0.00% |
| 2026-09-04 | 0.50873 | +0.24% |
| 2026-09-03 | 0.50749 | +0.10% |
| 2026-09-02 | 0.50696 | -0.35% |
| 2026-09-01 | 0.50877 | -0.06% |
| 2026-08-31 | 0.50907 | -0.32% |
| 2026-08-30 | 0.5107 | 0.00% |
| 2026-08-29 | 0.5107 | 0.00% |
| 2026-08-28 | 0.5107 | — |
GBP to BHD conversion table
1 GBP0.49829 BHD
5 GBP2.4914 BHD
10 GBP4.9829 BHD
25 GBP12.4572 BHD
50 GBP24.9145 BHD
100 GBP49.8289 BHD
500 GBP249.1445 BHD
1,000 GBP498.289 BHD
5,000 GBP2,491.4452 BHD
10,000 GBP4,982.8903 BHD
Get the GBP/BHD rate in your app
One GET request returns the latest GBP → 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/GBP/BHD"fetch('https://rate-api.com/api/v1/pair/GBP/BHD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} BHD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/BHD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} BHD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/BHD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} BHD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "BHD"
},
"rate": 0.4983,
"timestamp": 1790429385,
"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 GBPBahraini Dinar → British Pound2.0069Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.