Central Bank of Bosnia and Herzegovina Exchange Rate API
Official Central Bank of Bosnia and Herzegovina rates for 10 Sept 2026: 1 USD = 1.6743 BAM, 1 EUR = 1.9558 BAM. All 17 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.
About Central Bank of Bosnia and Herzegovina
The Central Bank of Bosnia and Herzegovina operates a currency board: the convertible mark is fixed at 1.95583 BAM per euro. It publishes an official daily exchange rate list with buy, middle, and sell rates for major currencies.
- Official website: www.cbbh.ba
- Official rate publication: Currency exchange rate list
Quick start
One request for the pair you need — EUR to BAM at the official Central Bank of Bosnia and Herzegovina rate:
curl "https://allratestoday.com/api/v1/central-bank/cbbh/latest?source=EUR&target=BAM" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/cbbh/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/cbbh/history?source=EUR&target=BAM&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-09-10)
Below is the current table from Central Bank of Bosnia and Herzegovina, unmodified — what a call to /latest returns right now, with values BAM per 1 unit of each currency:
Download this table: Excel (.xlsx) CSV (paid plan required)
One row per currency per publication date. Up to one year per download. Billed as one API call per currency per month of data.
Prefer a bulk file? The complete archive of every source is also published as an open dataset: central-bank-exchange-rates on Hugging Face
| Base | Quote | Type | Rate |
|---|---|---|---|
AUD | BAM | buy | 1.20966 |
AUD | BAM | middle | 1.212692 |
AUD | BAM | sell | 1.215724 |
CAD | BAM | buy | 1.216069 |
CAD | BAM | middle | 1.219117 |
CAD | BAM | sell | 1.222165 |
CHF | BAM | buy | 2.074586 |
CHF | BAM | middle | 2.079785 |
CHF | BAM | sell | 2.084984 |
CNY | BAM | buy | 0.249611 |
CNY | BAM | middle | 0.250237 |
CNY | BAM | sell | 0.250863 |
CZK | BAM | buy | 0.080461 |
CZK | BAM | middle | 0.080663 |
CZK | BAM | sell | 0.080865 |
DKK | BAM | buy | 0.261002 |
DKK | BAM | middle | 0.261656 |
DKK | BAM | sell | 0.26231 |
EUR | BAM | buy | 1.95583 |
EUR | BAM | middle | 1.95583 |
EUR | BAM | sell | 1.95583 |
GBP | BAM | buy | 2.271229 |
GBP | BAM | middle | 2.276921 |
GBP | BAM | sell | 2.282613 |
HUF | BAM | buy | 0.005360470000000001 |
HUF | BAM | middle | 0.0053739 |
HUF | BAM | sell | 0.00538733 |
JPY | BAM | buy | 0.01092413 |
JPY | BAM | middle | 0.01095151 |
JPY | BAM | sell | 0.010978889999999998 |
NOK | BAM | buy | 0.182374 |
NOK | BAM | middle | 0.182831 |
NOK | BAM | sell | 0.183288 |
RSD | BAM | buy | 0.01662336 |
RSD | BAM | middle | 0.01666502 |
RSD | BAM | sell | 0.01670668 |
RUB | BAM | buy | 0.01966 |
RUB | BAM | middle | 0.019709 |
RUB | BAM | sell | 0.019758 |
SEK | BAM | buy | 0.17498 |
SEK | BAM | middle | 0.175419 |
SEK | BAM | sell | 0.175858 |
TRY | BAM | buy | 0.034538 |
TRY | BAM | middle | 0.034625 |
TRY | BAM | sell | 0.034712 |
USD | BAM | buy | 1.67434 |
USD | BAM | middle | 1.678536 |
USD | BAM | sell | 1.682732 |
XDR | BAM | middle | 2.311615 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — cbbh-exchange-rate:
npm install cbbh-exchange-rate import { getRate } from 'cbbh-exchange-rate';
const pair = await getRate('EUR', 'BAM', { 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: cbbh-exchange-rate documentation.
Why use the official Central Bank of Bosnia and Herzegovina rate?
When an auditor or tax office in Bosnia and Herzegovina asks which rate you used, "the BAM mid-market rate at 14:32" is not an answer — the official rate published by Central Bank of Bosnia and Herzegovina for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.
If a pair isn't in the bank's published table, the API computes it from that table (inverse or cross via BAM) and marks it "derived": true — published and computed values are never silently mixed.
Endpoints
GET /api/v1/central-bank/cbbh/latest— latest table or single pair (all plans)GET /api/v1/central-bank/cbbh/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/cbbh/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/cbbh/availability— publication calendar: the dates the bank actually published (all plans)
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
Is there an API for Central Bank of Bosnia and Herzegovina exchange rates?
Yes — this one. Official daily BAM rates as clean JSON, latest table on every plan including free.
How often does Central Bank of Bosnia and Herzegovina update its rates?
New tables land once per business day — the API picks each one up shortly after Central Bank of Bosnia and Herzegovina publishes it (latest: 2026-09-10).
Is this the official published table?
Yes — the rows are Central Bank of Bosnia and Herzegovina's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.
Central Bank of Bosnia and Herzegovina 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