應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-periodaverage?segment=hibor.fixing請求參數(必要)
參數名稱 | 描述 |
---|---|
segment | 用於指示要檢索哪組數據。 格式: segment=data segment name (hibor.fixing/hibor/honia) 例子: segment=hibor.fixing |
港元利息結算率(hibor.fixing) / 香港銀行同業拆息(hibor)
輸出字段(JSON) | Swagger格式 |
名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期內數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
ir_overnight | 數字 | 年率 | 隔夜 |
ir_1w | 數字 | 年率 | 1星期 |
ir_1m | 數字 | 年率 | 1個月 |
ir_3m | 數字 | 年率 | 3個月 |
ir_6m | 數字 | 年率 | 6個月 |
ir_9m | 數字 | 年率 | 9個月 |
ir_12m | 數字 | 年率 | 12個月 |
港元隔夜平均指數(honia)
輸出字段(JSON) | Swagger格式 |
名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期內數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
ir_overnight | 數字 | 年率 | 隔夜 |
備註(港元利息結算率):
1. 港元利息結算率由香港銀行公會提供及擁有。每日港元利息結算率是根據香港銀行公會港元利率套戥協議(FRA)條款,按香港銀行同業市場港元存款的市場利率來釐定。香港銀行公會一般會在每個營業日(星期六除外)早上 11 時15 分在其網站上發布該天港元利息結算率,並以香港銀行公會指定的 12至20 間參考銀行所提供的報價資料作為釐定基礎。計算方法是從參考銀行的報價中剔除最高與最低各3個報價,然後取其平均數。 |
2. 由2014年4月1日起,香港銀行公會不再計算和公佈9個月期限的港元利息結算率。 |
備註(香港銀行同業拆息):
1. 香港銀行同業拆息是指渣打銀行在銀行同業市場收市時提供的中間利率報價。 |
2. 由2013年1月1日起停止公布。 |
備註(港元隔夜平均指數):
1. 由2016年4月5日起,港元隔夜平均指數由香港財資市場公會提供及擁有。港元隔夜平均指數是按成交量加權平均計算的利率,數據來自五間貨幣經紀在每個營業日早上8時至下午4時之間成交的無抵押港元隔夜銀行同業拆借交易。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-periodaverage?segment=hibor.fixing&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/er-ir/hk-interbank-ir-periodaverage?segment=hibor.fixing&offset=0'with urllib.request.urlopen (url) as req:print (req.read())