外匯基金票據及債券一覽表

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/debt-securities-settlement-system/operational-information/list-of-exchange-fund-bills-and-notes

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 描述
issue_number文字投資工具號碼
issue_description文字投資工具說明
issuer文字發行機構
p_agent_code文字支付代理人代碼
issue_date日期發行日期
日期採用ISO格式yyyy-mm-dd,例如1997-01-01
maturity_date日期到期日
日期採用ISO格式yyyy-mm-dd,例如1997-01-01
coupon_rate數字票面息率
last_coupon_date日期上次實際派息日期
日期採用ISO格式yyyy-mm-dd,例如1997-01-01
next_coupon_date日期下次實際派息日期
日期採用ISO格式yyyy-mm-dd,例如1997-01-01
int_pay_freq數字所付利息週期(月份)
common_code文字通用代碼
isin文字ISIN編號
issue_ccy文字發行貨幣
issue_size數字發行額
outstanding_amount數字未償還總額
repo_cat_hkd文字港元類別回購協議
repo_cat_usd文字美元類別回購協議
repo_cat_eur文字歐元類別回購協議
repo_cat_cny_cb文字人民幣類別回購協議(CB)
repo_cat_cny_ma文字人民幣類別回購協議(MA)
bank_repo_cat文字銀行類別回購協議
min_tradable_amount數字最低交易額
multi_tradable_amount數字倍數交易額
form文字形式

應用程式介面例子

Javascript 例子

$.ajax({
url: 'https://api.hkma.gov.hk/public/debt-securities-settlement-system/operational-information/list-of-exchange-fund-bills-and-notes?offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python 例子

import urllib.request
url = 'https://api.hkma.gov.hk/public/debt-securities-settlement-system/operational-information/list-of-exchange-fund-bills-and-notes?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

如何使用應用程式介面

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