Bank Indonesia Exchange Rate API
Official Bank Indonesia rates for 10 Sept 2026: 1 USD = 17464.24 IDR, 1 EUR = 20331.87 IDR. All 25 currencies published, history back to 2016. Free JSON API for tax, audits, and compliant invoicing.
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.
- Official website: www.bi.go.id
- Official rate publication: BI transaction rates
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-10)
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 (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 | IDR | buy | 12630.14 |
AUD | IDR | sell | 12758.84 |
BND | IDR | buy | 13816.65 |
BND | IDR | sell | 13957.71 |
CAD | IDR | buy | 12676.37 |
CAD | IDR | sell | 12810.28 |
CHF | IDR | buy | 21603.46 |
CHF | IDR | sell | 21828.68 |
CNH | IDR | buy | 2604.62 |
CNH | IDR | sell | 2630.84 |
CNY | IDR | buy | 2603.61 |
CNY | IDR | sell | 2630.05 |
DKK | IDR | buy | 2720.16 |
DKK | IDR | sell | 2747.84 |
EUR | IDR | buy | 20331.87 |
EUR | IDR | sell | 20539.74 |
GBP | IDR | buy | 23678.02 |
GBP | IDR | sell | 23921.28 |
HKD | IDR | buy | 2226.84 |
HKD | IDR | sell | 2249.37 |
JPY | IDR | buy | 114.0485 |
JPY | IDR | sell | 115.2323 |
KRW | IDR | buy | 13.08 |
KRW | IDR | sell | 13.21 |
KWD | IDR | buy | 56942.42 |
KWD | IDR | sell | 57533.46 |
LAK | IDR | buy | 0.78 |
LAK | IDR | sell | 0.79 |
MYR | IDR | buy | 4290.97 |
MYR | IDR | sell | 4339.42 |
NOK | IDR | buy | 1897.69 |
NOK | IDR | sell | 1917.03 |
NZD | IDR | buy | 10227.06 |
NZD | IDR | sell | 10335.14 |
PGK | IDR | buy | 3801.97 |
PGK | IDR | sell | 3981.29 |
PHP | IDR | buy | 279.14 |
PHP | IDR | sell | 282.42 |
SAR | IDR | buy | 4650.56 |
SAR | IDR | sell | 4697.8 |
SEK | IDR | buy | 1822.36 |
SEK | IDR | sell | 1840.83 |
SGD | IDR | buy | 13816.65 |
SGD | IDR | sell | 13957.71 |
THB | IDR | buy | 531.8 |
THB | IDR | sell | 537.31 |
USD | IDR | buy | 17464.24 |
USD | IDR | sell | 17639.76 |
VND | IDR | buy | 0.67 |
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
GET /api/v1/central-bank/bi/latest— latest table or single pair (all plans)GET /api/v1/central-bank/bi/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/bi/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/bi/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
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-10).
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