Bank Negara Malaysia Overnight Rate
Central bank policy rate for MY from BIS.
Country
MY
MYR
Frequency
monthly
Update cadence
Category
Central Bank
Rate type
Access
REST API
JSON · CSV
Bank Negara Malaysia Overnight Rate is a central bank policy rate — the interest rate at which a country's central bank lends money to commercial banks. It is the primary tool used by monetary authorities to control inflation, stabilize the currency, and influence overall economic activity.
Central bank rates serve as the floor for all borrowing costs in an economy. They directly influence mortgage rates, consumer loans, corporate bonds, and the exchange rate. Investors, economists, and financial institutions closely monitor these rates as leading indicators of monetary policy direction.
Click each endpoint to see the request URL, parameters, and a sample response.
API Request
https://interestratesapi.com/api/v1/latest?api_key=YOUR_API_KEY&symbols=BNM_OPR
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| symbols | required | Comma-separated symbol codes. E.g. BNM_OPR |
Sample Response
{
"success": true,
"date": "2026-05-26",
"rates": {
"BNM_OPR": 4.25
},
"dates": {
"BNM_OPR": "2026-05-26"
}
}
API Request
https://interestratesapi.com/api/v1/historical?api_key=YOUR_API_KEY&symbols=BNM_OPR&date=2026-05-26
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| symbols | required | Symbol code(s). E.g. BNM_OPR |
| date | required | Date in YYYY-MM-DD format. |
Sample Response
{
"success": true,
"historical": true,
"date": "2026-05-26",
"rates": {
"BNM_OPR": 4.25
}
}
API Request
https://interestratesapi.com/api/v1/timeseries?api_key=YOUR_API_KEY&symbols=BNM_OPR&start_date=2026-05-03&end_date=2026-06-02
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| symbols | required | Symbol code(s). E.g. BNM_OPR |
| start_date | required | Start date (YYYY-MM-DD). |
| end_date | required | End date (YYYY-MM-DD). |
Sample Response
{
"success": true,
"symbols": [
"BNM_OPR"
],
"rates": {
"2026-05-03": {
"BNM_OPR": 4.25
},
"2026-06-02": {
"BNM_OPR": 4.25
}
}
}
API Request
https://interestratesapi.com/api/v1/fluctuation?api_key=YOUR_API_KEY&symbols=BNM_OPR&start_date=2026-05-03&end_date=2026-06-02
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| symbols | required | Symbol code(s). E.g. BNM_OPR |
| start_date | required | Start date (YYYY-MM-DD). |
| end_date | required | End date (YYYY-MM-DD). |
Sample Response
{
"success": true,
"fluctuation": {
"BNM_OPR": {
"start_rate": 4.25,
"end_rate": 4.37,
"change": 0.12,
"change_pct": 2.8235
}
}
}
API Request
https://interestratesapi.com/api/v1/ohlc?api_key=YOUR_API_KEY&symbols=BNM_OPR&start=2026-05-03&end=2026-06-02&period=monthly
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| symbols | required | Symbol code. E.g. BNM_OPR |
| start | required | Start date (YYYY-MM-DD). |
| end | optional | End date (YYYY-MM-DD). Defaults to today. |
| period | optional | Grouping: monthly (default), weekly, quarterly. |
Sample Response
{
"success": true,
"symbol": "BNM_OPR",
"period": "monthly",
"ohlc": [
{
"period": "2026-05",
"open": 4.25,
"high": 4.5,
"low": 4.15,
"close": 4.37,
"data_points": 21
}
]
}
API Request
https://interestratesapi.com/api/v1/convert?api_key=YOUR_API_KEY&from=BNM_OPR&to=FED_FUNDS&amount=1
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| api_key | required | Your API key. |
| from | required | Source symbol. E.g. BNM_OPR |
| to | required | Target symbol. E.g. FED_FUNDS |
| amount | required | Amount to convert. |
| term_months | optional | Term in months for interest calculation (default 12). |
Sample Response
{
"success": true,
"from": "BNM_OPR",
"to": "FED_FUNDS",
"amount": 1,
"result": 0.981524
}
YOUR_API_KEY with your key
Get a free API key →
Get live and historical Bank Negara Malaysia Overnight Rate data in JSON format. One API, 50+ countries, normalized.