Bangladesh Bank Exchange Rates Today & Official API

Official Bangladesh Bank rates for 27 Sept 2026: 1 USD = 122.75 BDT, 1 EUR = 139.82 BDT. All 11 currencies published, history back to 2010. Free JSON API for tax, audits, and compliant invoicing.

Bangladesh flagBangladesh Bank publishes official daily exchange rates — 11 currencies against the BDT — and this API serves them as JSON, with history back to 2010. The latest table is on every plan. Get your API key.

About Bangladesh Bank

Bangladesh Bank, the central bank of Bangladesh, publishes the Exchange Rate of Taka each business day: the highest and lowest interbank USD/BDT rates at the Dhaka close together with the weighted average rate of the day’s interbank deals, plus taka cross rates for ten more currencies. The rate is determined by interbank supply and demand rather than an administered fixing, and it is the reference Bangladeshi banks, importers and auditors convert at.

Quick start

You need a free API key to run these. Register in under a minute — no card required.

Get a free API key Already registered? Copy your key from the dashboard.

One request for the pair you need — USD to BDT at the official Bangladesh Bank rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/bb/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/bb/history?source=USD&target=BDT&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-09-27)

The most recent table as published by Bangladesh Bank — exactly what the /latest endpoint returns right now. Values are BDT 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
AUD BDT buy 86.2073
AUD BDT sell 86.6059
BDT LKR buy 2.6764
BDT LKR sell 2.6925
CAD BDT buy 86.7736
CAD BDT sell 87.1933
CNH BDT buy 18.2574
CNH BDT sell 18.3408
EUR BDT buy 139.8245
EUR BDT sell 140.4634
GBP BDT buy 162.656
GBP BDT sell 163.4588
INR BDT buy 1.281
INR BDT sell 1.2869
JPY BDT buy 0.7804
JPY BDT sell 0.7841
SEK BDT buy 12.3709
SEK BDT sell 12.4363
SGD BDT buy 96.041
SGD BDT sell 96.5393
USD BDT buy 122.75
USD BDT reference 123.03
USD BDT sell 123.3

Node.js / TypeScript client

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

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

const pair = await getRate('USD', 'BDT', { 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: bangladesh-bank-exchange-rate documentation.

Why use the official Bangladesh Bank rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Bangladesh and beyond typically require the official rate published by Bangladesh Bank 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.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via BDT) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

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 Bangladesh Bank exchange rates via an API?

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

When do new rates appear here?

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

Are these the official rates?

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

Bangladesh Bank rates, one API key

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

Get Free API Key Read the Docs