貨幣供應量的組成項目-所有貨幣

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money/supply-components-all

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
end_of_month日期期末數字
年份和月份採用ISO格式yyyy-mm,例如1997-01
legal_tender_notes_coins_in_pub數字百萬港元由公眾持有的法定紙幣及硬幣
demand_deposits_with_lb數字百萬港元由持牌銀行持有的活期存款
m1_supply數字百萬港元貨幣供應量M1
savings_deposits_with_lb數字百萬港元由持牌銀行持有的儲蓄存款
time_deposits_with_lb數字百萬港元由持牌銀行持有的定期存款
ncds_issuedby_lb_heldby_pub數字百萬港元由持牌銀行發行及由公眾持有的可轉讓存款證
m2_supply數字百萬港元貨幣供應量M2
deposits_with_rlbsdtcs數字百萬港元由有限制牌照銀行及接受存款公司持有的存款
ncds_issuedby_rlbsdtcs_heldby_pub數字百萬港元由有限制牌照銀行及接受存款公司發行及由公眾持有的可轉讓存款證
m3_supply數字百萬港元貨幣供應量M3

備註:

1. 由於數字自1997年4月起包括不足一個月的外匯基金短期存款,因此有關序列出現中斷情況。

應用程式介面例子

Javascript例子

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

如何使用應用程式介面

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