Central Bank of Bahrain Exchange Rate API

Official Central Bank of Bahrain rates for 10 Sept 2026: 1 USD = 0.37608 BHD, 1 EUR = 0.4375 BHD. All 33 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.

Bahrain flagCentral Bank of Bahrain publishes official daily exchange rates — 33 currencies against the BHD — and this API serves them as JSON, with history back to 2016. The latest table is on every plan. Get your API key.

About Central Bank of Bahrain

The Central Bank of Bahrain regulates Bahrain's financial sector and issues the Bahraini dinar, pegged to the US dollar at 0.376 BHD. It publishes official daily exchange rates for around 30 currencies.

Quick start

One request for the pair you need — USD to BHD at the official Central Bank of Bahrain rate:

curl "https://allratestoday.com/api/v1/central-bank/cbb/latest?source=USD&target=BHD" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/cbb/latest" \
  -H "Authorization: Bearer art_live_your_key"

On paid plans, any historical date or a time series:

curl "https://allratestoday.com/api/v1/central-bank/cbb/history?source=USD&target=BHD&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-10)

The most recent table as published by Central Bank of Bahrain — exactly what the /latest endpoint returns right now. Values are BHD per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

Download history:
Choose currencies: USD
Excel (.xlsx) CSV

One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.

BaseQuoteTypeRate
AED BHD reference 0.102389
ANG BHD reference 0.210101
AUD BHD reference 0.271568
BDT BHD reference 0.00306
CAD BHD reference 0.272414
CHF BHD reference 0.464212
CNY BHD reference 0.056075
EGP BHD reference 0.007346
EUR BHD reference 0.437495
GBP BHD reference 0.509534
HKD BHD reference 0.047956
IDR BHD reference 0.000021
ILS BHD reference 0.124302
INR BHD reference 0.003954
JOD BHD reference 0.531113
JPY BHD reference 0.002449
KWD BHD reference 1.218294
LBP BHD reference 0.000004
LKR BHD reference 0.001145
MAD BHD reference 0.040178
NOK BHD reference 0.040887
NPR BHD reference 0.002467
NZD BHD reference 0.219707
OMR BHD reference 0.976822
PHP BHD reference 0.006016
PKR BHD reference 0.001355
QAR BHD reference 0.103169
SAR BHD reference 0.100153
SGD BHD reference 0.29745
THB BHD reference 0.011419
TND BHD reference 0.129601
TRY BHD reference 0.007755
USD BHD reference 0.376081

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — cbb-exchange-rate:

npm install cbb-exchange-rate
import { getRate } from 'cbb-exchange-rate';

const pair = await getRate('USD', 'BHD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Full reference — installation, all four functions, response shapes, error codes: cbb-exchange-rate documentation.

Why use the official Central Bank of Bahrain rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Bahrain and beyond typically require the official rate published by Central Bank of Bahrain for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.

If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via BHD) and marks it "derived": true — published and computed values are never silently mixed.

Endpoints

Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.

Frequently asked questions

Can I get Central Bank of Bahrain exchange rates via an API?

Yes — this API serves the bank's official daily BHD rates as JSON, and the latest table is on every plan, free included.

When do new rates appear here?

Once per business day, per Central Bank of Bahrain's own schedule; ingestion follows within the hour (latest table: 2026-09-10).

Are these the official rates?

Yes — ingested from Central Bank of Bahrain's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Central Bank of Bahrain rates, one API key

Latest table on every plan. History back to 2016 on paid plans. No credit card to start.

Get Free API Key Read the Docs