應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/economic-statistics名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
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.requesturl = '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())