應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/ef-fc-resv-assets/analysis-fc-reserve-assets名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
fc_ra_exchange_fund | 數字 | 百萬美元 | 外匯儲備資產 外匯基金 |
fc_ra_land_fund | 數字 | 百萬美元 | 外匯儲備資產 土地基金 |
fc_ra_total | 數字 | 百萬美元 | 外匯儲備資產 總計 |
fc_ra_per_capita | 數字 | 美元 | 人均外匯儲備資產1 |
fc_ra_months_retained_imports_goods | 數字 | 月數 | 按留用進口貨物計算的外匯儲備資產2 |
ratio_fc_ra_to_cic | 數字 | 外匯儲備資產對流通貨幣的比率 |
備註:
1. 人均外匯儲備資產數字按2018年年末人口臨時數字計算(因此該數字會在最新人口統計數字公布後作出修訂)。 |
2. 數字根據過去12個月的留用進口貨物平均數計算(2018年數字為估計數字,在日後得到更多資料時會作出修訂)。 |
* 1993年度之數字已採納1994年之會計政策。 以往年度之數字則未有重列。 |
@ 1994年度之數字已採納1995年之會計政策。 以往年度之數字則未有重列。 |
+ 在1997年10月起,外匯基金的外幣資產並不包括香港參與國際貨幣基金組織安排的援助泰國財政方案所提供的貸款。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/ef-fc-resv-assets/analysis-fc-reserve-assets?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/ef-fc-resv-assets/analysis-fc-reserve-assets?offset=0'with urllib.request.urlopen (url) as req:print (req.read())