Renminbi deposit rates

API Detailed Documentation

API URL:

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

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
end_of_monthDateDuring
Year and Month in ISO format yyyy-mm, For example, 1997-01
deposit_rate_1wNumberpercent per annumInterest rates on deposits of less than RMB100,000 yuan
1-week
deposit_rate_1mNumberpercent per annumInterest rates on deposits of less than RMB100,000 yuan
1-month
deposit_rate_3mNumberpercent per annumInterest rates on deposits of less than RMB100,000 yuan
3-month
deposit_rate_6mNumber percent per annumInterest rates on deposits of less than RMB100,000 yuan
6-month
deposit_rate_12mNumber percent per annumInterest rates on deposits of less than RMB100,000 yuan
12-month
savings_deposit_rateNumberpercent per annumInterest rates on deposits of less than RMB100,000 yuan
Savings Deposit Rate

Footnotes:

1. Licensed banks started to offer renminbi deposit taking service on 25 February 2004.

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/renminbi-dr?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/renminbi-dr?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.