Bank Indonesia Exchange Rate API

Official Bank Indonesia rates for 14 Sept 2026: 1 USD = 17522.94 IDR, 1 EUR = 20335.37 IDR. All 25 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.

Indonesia flagBank Indonesia: every IDR rate the bank publishes, as JSON. 25 currencies, archive back to 2016, latest table free 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-09-14)

Bank Indonesia's newest published table, verbatim — the same rows the /latest endpoint returns at this moment. Values are IDR 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 IDR buy 12565.7
AUD IDR sell 12693.77
BND IDR buy 13819.35
BND IDR sell 13965.96
CAD IDR buy 12662
CAD IDR sell 12792.04
CHF IDR buy 21534.89
CHF IDR sell 21754.01
CNH IDR buy 2611.51
CNH IDR sell 2637.79
CNY IDR buy 2611.39
CNY IDR sell 2637.99
DKK IDR buy 2720.57
DKK IDR sell 2748
EUR IDR buy 20335.37
EUR IDR sell 20541.53
GBP IDR buy 23680.5
GBP IDR sell 23925.59
HKD IDR buy 2234.53
HKD IDR sell 2257.01
JPY IDR buy 113.6156
JPY IDR sell 114.765
KRW IDR buy 13.02
KRW IDR sell 13.16
KWD IDR buy 57133.81
KWD IDR sell 57726.88
LAK IDR buy 0.78
LAK IDR sell 0.79
MYR IDR buy 4304.33
MYR IDR sell 4352.94
NOK IDR buy 1886.89
NOK IDR sell 1906.04
NZD IDR buy 10214.12
NZD IDR sell 10320.32
PGK IDR buy 3812.99
PGK IDR sell 3992.91
PHP IDR buy 279.25
PHP IDR sell 282.43
SAR IDR buy 4666.31
SAR IDR sell 4713.72
SEK IDR buy 1811.19
SEK IDR sell 1829.59
SGD IDR buy 13822.62
SGD IDR sell 13962.65
THB IDR buy 529.87
THB IDR sell 535.36
USD IDR buy 17522.94
USD IDR sell 17699.06
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.

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

Why use the official Bank Indonesia rate?

A market rate is a moving target; the rate Bank Indonesia publishes is a fixed, citable figure that stays put once printed — which is why invoicing, customs, audit evidence, and statutory accounting in Indonesia lean on it rather than on a live feed. Every response from this API carries the bank's own rate_date, and on days with no publication you get the most recent published table — the one compliance rules tell 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 IDR) 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

Does an exchange rate API exist for Bank Indonesia data?

Yes. This endpoint returns Bank Indonesia's official daily figures as JSON; the newest table is free on every plan.

How often are the rates updated?

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

Are these really Bank Indonesia's official figures?

Yes. Every value comes from Bank Indonesia's own publication and is served unmodified, carrying the bank's publication date; computed pairs are explicitly 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