經濟數據

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/economic-statistics

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
end_of_month日期期末數字
年份和月份採用ISO格式yyyy-mm,例如1997-01
nominal_gdp數字百萬港元名義本地生產總值1
real_gdp數字百萬港元實質本地生產總值1(以2016年環比物量計算)
gov_consol_bal數字百萬港元政府綜合結餘2
composite_cpi數字百萬港元綜合消費物價指數
unemploy_rate數字百萬港元失業率3
curr_acc_bal數字百萬港元經常帳結餘1
fc_reserve數字10 億美元外匯儲備4

備註:

1. 3月、6月、9月及12月數字是指季度總和。
2. 財政年度由4月1日起。
3. 佔勞動人口的比率(經季節性調整)。每月數字是指3個月的平均數。
4. 期末數字。

應用程式介面例子

Javascript例子

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

如何使用應用程式介面

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