資本市場統計數字

應用程式介面詳細規格

API URL:

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

API數據查詢

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

如何使用應用程式介面

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