Bank Negara Malaysia Open Data
Malaysia's central bank open data feeds
The Bank Negara Malaysia open API publishes exchange rates, interest rates, Kijang Emas gold prices and other monetary data. The sample returns the latest gold buying/selling prices per ounce.
GET https://api.bnm.gov.my/public/kijang-emas
{
"data": {
"effective_date": "2026-07-03",
"one_oz": {
"buying": 17169,
"selling": 17879
}
},
"meta": {
"last_updated": "2026-07-03 02:00:04",
"total_result": 1
}
}curl "https://api.bnm.gov.my/public/kijang-emas"const res = await fetch("https://api.bnm.gov.my/public/kijang-emas");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.bnm.gov.my/public/kijang-emas")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/public/kijang-emasPROBEDMalaysia's central bank open data feeds
/publicPublic — documented GET route.
/public/1Public details by ID (example: 1).
/public?limit=10Public — documented GET route.
/public/search?q=testSearch by query parameters.
/api/specification/categoriesCategories — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Bank Negara Malaysia Open Data: common questions
Is Bank Negara Malaysia Open Data free to use?
Yes — Bank Negara Malaysia Open Data is a free government API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bank Negara Malaysia Open Data need an API key?
No — Bank Negara Malaysia Open Data needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Bank Negara Malaysia Open Data from the browser?
Not directly — Bank Negara Malaysia Open Data doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Bank Negara Malaysia Open Data up right now?
As of our last scheduled check, Bank Negara Malaysia Open Data is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.