Customer deposits by type – Renminbi deposits

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/customer-deposits-by-type-cny

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
end_of_monthDateAs at end of
Year and Month in ISO format yyyy-mm, For example, 1997-01
demand_savings_depositsNumberRMB million yuanDemand and Savings Deposits
time_depositsNumberRMB million yuanTime Deposits
total_depositsNumberRMB million yuanTotal
no_of_ais_engagedNumberNo. of authorized institutions engaged in RMB business

Footnotes:

1. During November 2017, RMB7,266,792 million yuan was converted into Hong Kong dollars and other currencies, and an equivalent of RMB7,340,019 million yuan of Hong Kong dollars and other currencies was converted into renminbi through Authorized Institution engaged in renminbi business. There were 53,224 renminbi remittance transactions from Hong Kong to Mainland, amounting to RMB1,165,223 million yuan.
2. At the end of November 2017, 6,080,619 renminbi demand and savings deposit accounts and 762,056 renminbi time deposit accounts were opened with Authorized Institutions engaged in renminbi business.

API Examples

Javascript Example

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

How to use the APIs

To learn more, please visit API documentation.