资本市场统计数字

应用程式介面详细规格

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())

如何使用应用程式介面

有关详情,请浏覧「应用程式介面规格」。