應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/cmu-turnover-sec-mkt-remain-tenor-all-currencies名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
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-all-currencies?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-all-currencies?offset=0'with urllib.request.urlopen (url) as req:print (req.read())