API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/list-outstanding-govbonds
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
expected_maturity_date | Date | Expected maturity date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 | |
original_maturity | String | Original maturity | |
issue_number | String | Issue number | |
isin_code | String | ISIN code | |
stock_code | String | Stock code | |
coupon | String | % per annum | Coupon |
outstanding_size | Number | HK$ billion | Outstanding size |
institutional_retail | String | Institutional/Retail |
Footnotes:
Notes: In addition, the HKSAR Government issued three Islamic bonds under the Government Bond Programme, each with an issuance size of US$1 billion, on 18 September 2014 (Stock Code:4223), 3 June 2015 (Stock Code:4226) and 28 February 2017 (Stock Code:4233). The 2014 and 2015 issuances were 5-year tenors while the 2017 issuance was a 10-year tenor. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/list-outstanding-govbonds?offset=0',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python Example
import urllib.requesturl = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/list-outstanding-govbonds?offset=0'with urllib.request.urlopen (url) as req:print (req.read())