外幣儲備資產分析

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/ef-fc-resv-assets/analysis-fc-reserve-assets

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
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.request
url = '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())

如何使用應用程式介面

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