Tender results of Government Bonds issued under the Institutional Bond Issuance Programme

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/tender-results-gov-bonds-ibip?segment=2year

Request Parameters (Mandatory)

Parameter Name Description
segment Used to indicate which sets of data are going to retrieve.
Format: segment=data segment name (2year/3year/5year/10year/15year)
Example: segment=2year
Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
issue_numberStringIssue number
ni_roStringNew issue (NI)/Re-open (RO)
issue_dateDateIssue Date
Date in ISO format yyyy-mm-dd, For example, 1997-01-01
expected_maturity_dateDateExpected maturity date
Date in ISO format yyyy-mm-dd, For example, 1997-01-01
couponNumber% per annumCoupon
average_yield_acceptedNumber%Average yield accepted
amount_appliedNumberHK$ billionAmount applied
amount_allottedNumberHK$ billionAmount allotted
bid-to-cover_ratioNumberBid-to-cover ratio

Footnotes:

Notes (5 Year): In addition, the HKSAR Government issued two Islamic bonds under the Government Bond Programme, each with an issuance size of US$1 billion and a tenor of 5 years on 18 September 2014 and on 3 June 2015.
Notes (10 Year): In addition, the HKSAR Government issued an Islamic bond under the Government Bond Programme, with an issuance size of US$1 billion and a tenor of 10 years on 28 February 2017.

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/tender-results-gov-bonds-ibip?segment=2year&offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python Example

import urllib.request
url = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/gov-bond/tender-results-gov-bonds-ibip?segment=2year&offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.