應用程式介面詳細規格
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.requesturl = '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())