Convert BHD to INR
Bahraini Dinar → Indian Rupee
1 BHD = 254.83332 INR(1 INR = 0.00392413 BHD)
Currency converter
1 BHD =
254.8333 INR
BHD to INR: last 30 days
Over the last 30 days, 1 BHD traded between 251.3032 and 255.2128 INR, averaging 253.6651 INR. The BHD/INR rate is up 0.45% since 2026-08-28.
- 30-day high
- 255.2128
- 2026-09-15
- 30-day low
- 251.3032
- 2026-09-03
- 30-day average
- 253.6651
- Days with data: 30
- 30-day change
- +0.45%
- since 2026-08-28
255.2128
251.30322026-08-28 → 2026-09-26
| Date | 1 BHD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 254.8333 | 0.00% |
| 2026-09-25 | 254.8333 | -0.15% |
| 2026-09-24 | 255.2122 | +0.23% |
| 2026-09-23 | 254.6302 | +0.16% |
| 2026-09-22 | 254.2287 | -0.24% |
| 2026-09-21 | 254.8404 | -0.06% |
| 2026-09-20 | 255 | 0.00% |
| 2026-09-19 | 255 | +0.24% |
| 2026-09-18 | 254.3799 | -0.31% |
| 2026-09-17 | 255.1596 | -0.02% |
| 2026-09-16 | 255.2128 | 0.00% |
| 2026-09-15 | 255.2128 | +0.42% |
| 2026-09-14 | 254.1489 | 0.00% |
| 2026-09-13 | 254.1489 | 0.00% |
| 2026-09-12 | 254.1489 | 0.00% |
| Date | 1 BHD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 254.1489 | +0.13% |
| 2026-09-10 | 253.8298 | +0.35% |
| 2026-09-09 | 252.9521 | +0.30% |
| 2026-09-08 | 252.2075 | +0.36% |
| 2026-09-07 | 251.3032 | 0.00% |
| 2026-09-06 | 251.3032 | 0.00% |
| 2026-09-05 | 251.3032 | 0.00% |
| 2026-09-04 | 251.3032 | 0.00% |
| 2026-09-03 | 251.3032 | -0.51% |
| 2026-09-02 | 252.5798 | +0.02% |
| 2026-09-01 | 252.5266 | -0.23% |
| 2026-08-31 | 253.1117 | -0.23% |
| 2026-08-30 | 253.6968 | 0.00% |
| 2026-08-29 | 253.6968 | 0.00% |
| 2026-08-28 | 253.6968 | — |
BHD to INR conversion table
1 BHD254.8333 INR
5 BHD1,274.1666 INR
10 BHD2,548.3332 INR
25 BHD6,370.833 INR
50 BHD12,741.666 INR
100 BHD25,483.332 INR
500 BHD127,416.66 INR
1,000 BHD254,833.32 INR
5,000 BHD1,274,166.6 INR
10,000 BHD2,548,333.2 INR
Get the BHD/INR rate in your app
One GET request returns the latest BHD → INR 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/INR"fetch('https://rate-api.com/api/v1/pair/BHD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BHD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BHD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BHD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BHD/INR');
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']} INR\n";Example response
{
"success": true,
"pair": {
"from": "BHD",
"to": "INR"
},
"rate": 254.8333,
"timestamp": 1790432141,
"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
INR to BHDIndian Rupee → Bahraini Dinar0.0039241Convert BHD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.