Analysis of NCDs issued in Hong Kong

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money-markets/ncds-issued-in-hk

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
end_of_monthDateAs at end of
Year and Month in ISO format yyyy-mm, For example, 1997-01
ncds_outstanding_hkdNumberHK$ millionNCDs outstanding
HK$
ncds_outstanding_fcNumberHK$ millionNCDs outstanding
F.C.
ncds_outstanding_totalNumberHK$ millionNCDs outstanding
Total
of_which_by_ais_hkdNumberHK$ millionOf which held by authorized institutions
HK$
of_which_by_ais_fcNumberHK$ millionOf which held by authorized institutions
F.C.
of_which_by_ais_totalNumberHK$ millionOf which held by authorized institutions
Total
of_which_by_pub_hkdNumberHK$ millionOf which held by public
HK$
of_which_by_pub_fcNumberHK$ millionOf which held by public
F.C.
of_which_by_pub_totalNumberHK$ millionOf which held by public
Total
proport_outstand_ncds_by_pub_hkdNumberHK$ millionProportion of outstanding NCDs held by public (%)
HK$
proport_outstand_ncds_by_pub_fcNumberHK$ millionProportion of outstanding NCDs held by public (%)
F.C.
proport_outstand_ncds_by_pub_totalNumberHK$ millionProportion of outstanding NCDs held by public (%)
Total

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money-markets/ncds-issued-in-hk?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/money-markets/ncds-issued-in-hk?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.