API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/bank-svf-info/info-for-sme-lending-services?lang=enRequest Parameters (Mandatory)
| Parameter Name | Description |
|---|---|
| lang | To input the language selected to output. Format: lang=(en|tc) Example: lang=en |
| Output Fields (JSON) | Swagger Format |
| Name | Type | Description |
|---|---|---|
| bank_name | String | Name of AI |
| web_page | String | Dedicated web page |
| hotline_1 | String | Dedicated hotline 1 |
| remark_1 | String | Remark of dedicated hotline 1 |
| hotline_2 | String | Dedicated hotline 2 |
| remark_2 | String | Remark of dedicated hotline 2 |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/bank-svf-info/info-for-sme-lending-services?lang=en',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python Example
import urllib.requesturl = 'https://api.hkma.gov.hk/public/bank-svf-info/info-for-sme-lending-services?lang=en'with urllib.request.urlopen (url) as req:print (req.read())