貨幣基礎-期末數字

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/monetary-base-endperiod

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
end_of_month日期期末數字
年份和月份採用ISO格式yyyy-mm,例如1997-01
cert_of_indebt數字百萬港元負債證明書
gov_notes_coins_circulation數字百萬港元政府發行的流通紙幣及硬幣
aggr_balance_bf_disc_win數字百萬港元進行貼現窗活動前的總結餘
outstanding_efbn數字百萬港元外匯基金票據及債券未償還總額
ow_lb_bf_disc_win數字百萬港元其中:持牌銀行在進行貼現窗活動前所持有數額
mb_bf_disc_win_total數字百萬港元進行貼現窗活動前的貨幣基礎總額1

備註:

1. 貨幣基礎總額自1998年11月25日起公布。

應用程式介面例子

Javascript例子

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

如何使用應用程式介面

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