Hong Kong dollar interest rates – Rates as at effective dates

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hkd-ir-effdates

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
effect_dateDateEffective from
Date in ISO format yyyy-mm-dd, For example, 1997-01-01
dr_1wNumberpercent per annumTime deposit rates
1-week1
dr_1mNumberpercent per annumTime deposit rates
1-month1
dr_3mNumberpercent per annumTime deposit rates
3-month1
dr_6mNumberpercent per annumTime deposit rates
6-month1
dr_12mNumberpercent per annumTime deposit rates
12-month1
savings_deposit_rateNumberpercent per annumSavings deposit rate1
best_lending_rateNumberpercent per annumBest lending rate2

Footnotes:

1. Savings and time deposit rates refer to the maximum interest rates offered by licensed banks under the Hong Kong Association of Banks' Interest Rates Rules. Deregulation of the Interest Rate Rules has taken place in phases since October 1994 and was totally completed on 3 July 2001.
2. Best lending rate refers to the rate quoted by the Hongkong and Shanghai Banking Corporation Limited.

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hkd-ir-effdates?offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python Example

import urllib.request
url = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hkd-ir-effdates?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.