外匯基金分析帳目

應用程式介面詳細規格

API URL:

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

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
end_of_month日期期末數字
年份和月份採用ISO格式yyyy-mm,例如1997-01
monetary_base數字百萬港元貨幣基礎
claims_hksar_gov數字百萬港元對香港特別行政區政府的債權
claims_private_sector數字百萬港元對香港私營部門的債權
foreign_assets數字百萬港元境外資產1
foreign_liabilities數字百萬港元對外負債2

備註:

1. 境外資產即外匯基金存放境外的資產,並不包括存放在香港銀行的外幣存款及香港銀行發行的外幣存款證。
2. 對外負債包括在回購協議下的承擔、現金抵押的證券借貸安排,以及須支付予外匯基金外聘基金經理的費用。

應用程式介面例子

Javascript例子

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

如何使用應用程式介面

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