应用程式介面详细规格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/cmu-turnover-sec-mkt-remain-tenor-other-fc名称 | 类型 | 计量单位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期内数字 年份和月份采用ISO格式yyyy-mm,例如1997-01 | |
fixed_rate_1y_or_below_val | 数字 | 百万港元 | 定息债务工具 1年以下 价值 |
fixed_rate_1y_or_below_vol | 数字 | 定息债务工具 1年以下 数量 | |
fixed_rate_1yto3y_val | 数字 | 百万港元 | 定息债务工具 1年至3年 价值 |
fixed_rate_1yto3y_vol | 数字 | 定息债务工具 1年至3年 数量 | |
fixed_rate_3yto5y_val | 数字 | 百万港元 | 定息债务工具 3年至5年 价值 |
fixed_rate_3yto5y_vol | 数字 | 定息债务工具 3年至5年 数量 | |
fixed_rate_5yto7y_val | 数字 | 百万港元 | 定息债务工具 5年至7年 价值 |
fixed_rate_5yto7y_vol | 数字 | 定息债务工具 5年至7年 数量 | |
fixed_rate_7y_val | 数字 | 百万港元 | 定息债务工具 7年以上 价值 |
fixed_rate_7y_vol | 数字 | 定息债务工具 7年以上 数量 | |
fixed_rate_subtotal_val | 数字 | 百万港元 | 定息债务工具 小计 价值 |
fixed_rate_subtotal_vol | 数字 | 定息债务工具 小计 数量 | |
floating_rate_1y_or_below_val | 数字 | 百万港元 | 浮息债务工具 1年以下 价值 |
floating_rate_1y_or_below_vol | 数字 | 浮息债务工具 1年以下 数量 | |
floating_rate_1yto3y_val | 数字 | 百万港元 | 浮息债务工具 1年至3年 价值 |
floating_rate_1yto3y_vol | 数字 | 浮息债务工具 1年至3年 数量 | |
floating_rate_3yto5y_val | 数字 | 百万港元 | 浮息债务工具 3年至5年 价值 |
floating_rate_3yto5y_vol | 数字 | 浮息债务工具 3年至5年 数量 | |
floating_rate_5yto7y_val | 数字 | 百万港元 | 浮息债务工具 5年至7年 价值 |
floating_rate_5yto7y_vol | 数字 | 浮息债务工具 5年至7年 数量 | |
floating_rate_7y_val | 数字 | 百万港元 | 浮息债务工具 7年以上 价值 |
floating_rate_7y_vol | 数字 | 浮息债务工具 7年以上 数量 | |
floating_rate_subtotal_val | 数字 | 百万港元 | 浮息债务工具 小计 价值 |
floating_rate_subtotal_vol | 数字 | 浮息债务工具 小计 数量 | |
total_val | 数字 | 百万港元 | 总计 价值 |
total_vol | 数字 | 总计 数量 |
应用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/cmu-turnover-sec-mkt-remain-tenor-other-fc?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/efbn/cmu-turnover-sec-mkt-remain-tenor-other-fc?offset=0'with urllib.request.urlopen (url) as req:print (req.read())