Home Documentation Central Bank Rates Tax Authority Rates Playground Pricing API Status Blog About FAQ Contact Us

Bank Indonesia Exchange Rate API

Official Bank Indonesia (Indonesia) daily exchange rates as JSON: 25 currencies, history back to 2016. The published IDR rates required for tax, audits, and compliant invoicing.

Indonesia flagBank Indonesia official daily exchange rates as JSON: 25 currencies against the IDR, history back to 2016. Latest table on every plan. Get your API key.

About Bank Indonesia

Bank Indonesia is the central bank of the Republic of Indonesia. It publishes transaction reference rates (buy and sell) for the rupiah against major currencies once each business day — the standard reference for statutory and tax purposes in Indonesia.

Quick start

One request for the pair you need — USD to IDR at the official Bank Indonesia rate:

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

Or the bank's full published table:

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

Latest published rates (2026-08-11)

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

Download this table: Excel (.xlsx) CSV

BaseQuoteTypeRate
AUD IDR buy 12518.16
AUD IDR sell 12647.54
BND IDR buy 13844.73
BND IDR sell 13984.96
CAD IDR buy 12697.96
CAD IDR sell 12828.33
CHF IDR buy 21935.12
CHF IDR sell 22158.31
CNH IDR buy 2625.29
CNH IDR sell 2651.72
CNY IDR buy 2624.9
CNY IDR sell 2651.56
DKK IDR buy 2737.99
DKK IDR sell 2765.93
EUR IDR buy 20469.94
EUR IDR sell 20677.45
GBP IDR buy 23892.52
GBP IDR sell 24139.78
HKD IDR buy 2256.78
HKD IDR sell 2279.55
JPY IDR buy 111.70290000000001
JPY IDR sell 112.854
KRW IDR buy 12.49
KRW IDR sell 12.61
KWD IDR buy 57646.2
KWD IDR sell 58244.49
LAK IDR buy 0.78
LAK IDR sell 0.8
MYR IDR buy 4328.04
MYR IDR sell 4376.89
NOK IDR buy 1861.87
NOK IDR sell 1880.9
NZD IDR buy 10435.93
NZD IDR sell 10546.18
PGK IDR buy 3859.91
PGK IDR sell 4202.73
PHP IDR buy 291.35
PHP IDR sell 294.53
SAR IDR buy 4715.45
SAR IDR sell 4763.34
SEK IDR buy 1869.2
SEK IDR sell 1888.35
SGD IDR buy 13844.73
SGD IDR sell 13984.96
THB IDR buy 536.71
THB IDR sell 542.27
USD IDR buy 17706.03
USD IDR sell 17883.97
VND IDR buy 0.68
VND IDR sell 0.68

Node.js / TypeScript client

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

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

const pair = await getRate('USD', 'IDR', { 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.

Why use the official Bank Indonesia rate?

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

Is there an API for Bank Indonesia exchange rates?

Yes — this one. Official daily IDR rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

Bank Indonesia publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-08-11).

Are these the official rates?

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

Bank Indonesia 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