API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money-markets/ncds-issued-in-hk
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_month | Date | As at end of Year and Month in ISO format yyyy-mm, For example, 1997-01 | |
ncds_outstanding_hkd | Number | HK$ million | NCDs outstanding HK$ |
ncds_outstanding_fc | Number | HK$ million | NCDs outstanding F.C. |
ncds_outstanding_total | Number | HK$ million | NCDs outstanding Total |
of_which_by_ais_hkd | Number | HK$ million | Of which held by authorized institutions HK$ |
of_which_by_ais_fc | Number | HK$ million | Of which held by authorized institutions F.C. |
of_which_by_ais_total | Number | HK$ million | Of which held by authorized institutions Total |
of_which_by_pub_hkd | Number | HK$ million | Of which held by public HK$ |
of_which_by_pub_fc | Number | HK$ million | Of which held by public F.C. |
of_which_by_pub_total | Number | HK$ million | Of which held by public Total |
proport_outstand_ncds_by_pub_hkd | Number | HK$ million | Proportion of outstanding NCDs held by public (%) HK$ |
proport_outstand_ncds_by_pub_fc | Number | HK$ million | Proportion of outstanding NCDs held by public (%) F.C. |
proport_outstand_ncds_by_pub_total | Number | HK$ million | Proportion 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.requesturl = '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())