外匯基金票據及債券的投標結果-外匯基金債券

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-tender-results-efn?segment=2year

請求參數(必要)

參數名稱 描述
segment 用於指示要檢索哪組數據。
格式: segment=data segment name (2year/3year/5year/7year/10year/15year)
例子: segment=2year
輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
issue_date日期發行日期
日期採用ISO格式yyyy-mm-dd,例如1997-01-01
coupon數字年息票面息率
average_yield_accepted數字%平均接納收益率
amount_applied數字百萬港元認購額
over_subscription數字倍數超額認購

備註:

1. 由2015年1月起,金管局停止發行3年及以上年期的外匯基金債券。
2. 由2007年中起,金管局停止發行7年年期的外匯基金債券。

應用程式介面例子

Javascript例子

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-tender-results-efn?segment=2year&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/efbn/efbn-tender-results-efn?segment=2year&offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

如何使用應用程式介面

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