應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/customer-deposits-by-type-cny名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
demand_savings_deposits | 數字 | 百萬元人民幣 | 活期及儲蓄存款 |
time_deposits | 數字 | 百萬元人民幣 | 定期存款 |
total_deposits | 數字 | 百萬元人民幣 | 總計 |
no_of_ais_engaged | 數字 | 經營人民幣業務的認可機構數目 |
備註:
1. 在2017年11月, 透過經營人民幣業務的認可機構進行的人民幣兌換交易, 共有72,667.9億元人民幣被兌換為港元及其他貨幣, 以及以等值73,400.2億元人民幣的港元及其他貨幣被兌換為人民幣。由香港匯至內地的人民幣匯款交易有53,224宗, 涉及金額 11,652.2億元人民幣。 |
2. 於2017年11月底, 在經營人民幣業務的認可機構開設的人民幣活期及儲蓄存款戶口有6,080,619個, 人民幣定期存款戶口有 762,056個。 |
應用程式介面例子
Javascript例子
$.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例子
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())