Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

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.

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 daily 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-07-31)

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:

BaseQuoteTypeRate
AUD IDR buy 12501.39
AUD IDR sell 12628.85
BND IDR buy 13925.53
BND IDR sell 14068.75
CAD IDR buy 12786.19
CAD IDR sell 12917.45
CHF IDR buy 22003.19
CHF IDR sell 22235.21
CNH IDR buy 2662.27
CNH IDR sell 2689.18
CNY IDR buy 2661.83
CNY IDR sell 2688.86
DKK IDR buy 2752.21
DKK IDR sell 2780.29
EUR IDR buy 20572.43
EUR IDR sell 20781
GBP IDR buy 23990.08
GBP IDR sell 24236.63
HKD IDR buy 2293.02
HKD IDR sell 2316.1
JPY IDR buy 109.84129999999999
JPY IDR sell 110.9791
KRW IDR buy 12.49
KRW IDR sell 12.62
KWD IDR buy 58448.77
KWD IDR sell 59055.39
LAK IDR buy 0.79
LAK IDR sell 0.81
MYR IDR buy 4392.58
MYR IDR sell 4443.24
NOK IDR buy 1870.86
NOK IDR sell 1892.34
NZD IDR buy 10438.21
NZD IDR sell 10548.57
PGK IDR buy 3946.48
PGK IDR sell 4258.67
PHP IDR buy 292.09
PHP IDR sell 295.22
SAR IDR buy 4790.69
SAR IDR sell 4839.1
SEK IDR buy 1859.38
SEK IDR sell 1878.43
SGD IDR buy 13925.53
SGD IDR sell 14068.75
THB IDR buy 533.92
THB IDR sell 539.6
USD IDR buy 17987.61
USD IDR sell 18168.39
VND IDR buy 0.68
VND IDR sell 0.69

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);

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 day's 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-07-31).

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