客戶存款(按類別劃分)-人民幣存款

應用程式介面詳細規格

API URL:

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

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
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.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())

如何使用應用程式介面

有關詳情,請瀏覧「應用程式介面規格」。