API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/other-mr-non-bank-exposures
| |
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 | |
ndi_obs_exposures | Number | HK$ million | Negotiable debt instruments and other on-balance sheet exposures |
obs_exposures | Number | HK$ million | Off-balance sheet exposures |
lending_total | Number | HK$ million | Total |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/other-mr-non-bank-exposures?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/banking/other-mr-non-bank-exposures?offset=0'with urllib.request.urlopen (url) as req:print (req.read())