應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/capital-market-statistics名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
hkd_drmkt_outstand_efbn | 數字 | 百萬港元 | 港元債務市場 未償還總額 外匯基金票據及債券1,2 |
hkd_drmkt_outstand_odrinst | 數字 | 百萬港元 | 港元債務市場 未償還總額 其他債務工具1,2 |
hkd_drmkt_outstand_total | 數字 | 百萬港元 | 港元債務市場 未償還總額 總計1,2 |
hkd_drmkt_new_non_efbn | 數字 | 百萬港元 | 港元債務市場 外匯基金票據及債券以外的新發行債務工具 |
eq_mkt_hs_index | 數字 | point | 股票市場 恒生指數1 (31/7/64=100) |
eq_mkt_ttl_stock_cap | 數字 | 百萬港元 | 股票市場 股票市價總市值1,3 |
eq_mkt_fund_raised | 數字 | 百萬港元 | 股票市場 集資總額3,4 |
備註:
1. 期末數字。 |
2. 以票面值計算。 |
3. 包括主板及創業板。 |
4. 包括首次公開招股、配售、供股等。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/capital-market-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/capital-market-statistics?offset=0'with urllib.request.urlopen (url) as req:print (req.read())