API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/customer-deposits-by-type-cny
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_month | Date | As at end of Year and Month in ISO format yyyy-mm, For example, 1997-01 | |
demand_savings_deposits | Number | RMB million yuan | Demand and Savings Deposits |
time_deposits | Number | RMB million yuan | Time Deposits |
total_deposits | Number | RMB million yuan | Total |
no_of_ais_engaged | Number | No. 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.requesturl = '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())