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

Bank Negara Malaysia Exchange Rate API

Official Bank Negara Malaysia (Malaysia) daily exchange rates as JSON: 27 currencies, history back to 2020. The published MYR rates required for tax, audits, and compliant invoicing.

Malaysia flagBank Negara Malaysia official daily exchange rates as JSON: 27 currencies against the MYR, history back to 2020. Latest table on every plan. Get your API key.

About Bank Negara Malaysia

Bank Negara Malaysia is Malaysia's central bank. It publishes ringgit exchange rates from the Kuala Lumpur interbank market each business day, with the 12:00 noon middle rate serving as the standard official reference in Malaysia.

Quick start

One request for the pair you need — USD to MYR at the official Bank Negara Malaysia rate:

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

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/bnm/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/bnm/history?source=USD&target=MYR&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 Negara Malaysia — exactly what the /latest endpoint returns right now. Values are MYR per 1 unit of each currency:

Download this table: Excel (.xlsx) CSV

BaseQuoteTypeRate
AED MYR middle 1.114212
AUD MYR middle 2.8883
BND MYR middle 3.1969
CAD MYR middle 2.9376
CHF MYR middle 5.0509
CNY MYR middle 0.6068
EGP MYR middle 0.0819
EUR MYR middle 4.724
GBP MYR middle 5.529
HKD MYR middle 0.521613
IDR MYR middle 0.00023
INR MYR middle 0.042907
JPY MYR middle 0.025706000000000003
KHR MYR middle 0.001007
KRW MYR middle 0.002892
MMK MYR middle 0.001955
NPR MYR middle 0.026817
NZD MYR middle 2.4082
PHP MYR middle 0.067019
PKR MYR middle 0.014735
SAR MYR middle 1.089909
SGD MYR middle 3.1969
THB MYR middle 0.123865
TWD MYR middle 0.126943
USD MYR middle 4.0925
VND MYR middle 0.000157
XDR MYR middle 5.5942

Node.js / TypeScript client

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

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

const pair = await getRate('USD', 'MYR', { 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 Negara Malaysia rate?

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

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

How often are the rates updated?

Bank Negara Malaysia 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 Negara Malaysia's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Bank Negara Malaysia rates, one API key

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

Get Free API Key Read the Docs