應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/monetary-base-endperiod名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
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.requesturl = '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())