API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/debt-securities-settlement-system/operational-information/list-of-exchange-fund-bills-and-notes|
| |
| Output Fields (JSON) | Swagger Format |
| Name | Type | Description |
|---|---|---|
| issue_number | String | Issue Number |
| issue_description | String | Issue Description |
| issuer | String | Issuer |
| p_agent_code | String | Paying Agent Code |
| issue_date | Date | Issue Date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 |
| maturity_date | Date | Maturity Date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 |
| coupon_rate | Number | Coupon Rate |
| last_coupon_date | Date | Last Coupon Date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 |
| next_coupon_date | Date | Next Coupon Date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 |
| int_pay_freq | Number | Interest Payment Frequency (Months) |
| common_code | String | Common Code |
| isin | String | ISIN |
| issue_ccy | String | Issue Currency |
| issue_size | Number | Issue Size |
| outstanding_amount | Number | Outstanding Amount |
| repo_cat_hkd | String | Repo Category for HKD |
| repo_cat_usd | String | Repo Category for USD |
| repo_cat_eur | String | Repo Category for EURO |
| repo_cat_cny_cb | String | Repo Category for CNY (CB) |
| repo_cat_cny_ma | String | Repo Category for CNY (MA) |
| bank_repo_cat | String | Bank Repo Category |
| min_tradable_amount | Number | Minimum Tradable Amount |
| multi_tradable_amount | Number | Multiple Tradable Amount |
| form | String | Form |
API Examples
Javascript Example
$.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 Example
import urllib.requesturl = '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())