API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/assetquality-ais
| |
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 | |
pass_loans | Number | % | As % of total loans1 Pass loans |
sp_ment_loans | Number | % | As % of total loans1 Special mention loans |
cl_gross_substandard | Number | % | As % of total loans1 Classified loans (gross) Substandard |
cl_gross_doubtful | Number | % | As % of total loans1 Classified loans (gross) Doubtful |
cl_gross_loss | Number | % | As % of total loans1 Classified loans (gross) Loss |
cl_gross_total | Number | % | As % of total loans1 Classified loans (gross) Total |
cl_net | Number | % | As % of total loans1 Classified loans (net)3 |
loans_od3m | Number | % | As % of total loans1 Loans overdue > 3 months |
loans_resch | Number | % | As % of total loans1 Rescheduled loans |
loans_od3m_resch_total | Number | % | As % of total loans1 Loans overdue > 3 months and rescheduled loans Total |
cl_gross_mainland_lend | Number | % | As % of total Mainland-related lending2 Classified loans (gross) of Mainland-related lending |
Footnotes:
1. Figures cover authorized institutions' Hong Kong offices, overseas branches and major overseas subsidiaries. |
2. Figures cover authorized institutions' Hong Kong offices, Mainland branches and subsidiaries. |
3. Net of specific provisions/individual impairment allowances. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/assetquality-ais?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/assetquality-ais?offset=0'with urllib.request.urlopen (url) as req:print (req.read())