应用程式介面详细规格
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())