API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending-borrowers-type
| |
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 | |
mainland_state_owned_entities | Number | HK$ million | Mainland state-owned entities1 |
mainland_private_entities | Number | HK$ million | Mainland private entities |
non-mainland_entities | Number | HK$ million | Non-Mainland entities2 |
lending_total | Number | HK$ million | Total |
Footnotes:
1. Including central or local government-owned entities, their subsidiaries, and their majority-owned JVs. |
2. Including (i) Mainland-incorporated private entities which are not beneficially-owned by Mainland interest, their subsidiaries, and their majority-owned JVs, (ii) entities incorporated outside Mainland China where the credit is granted for use in Mainland China, and (iii) other entities where the credit is considered by the reporting institution to be Mainland-related lending. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending-borrowers-type?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/mr-lending-borrowers-type?offset=0'with urllib.request.urlopen (url) as req:print (req.read())