Contact details of banks' dedicated hotline for SME

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/bank-svf-info/info-for-sme-lending-services?lang=en

Request 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_nameStringName of AI
web_pageStringDedicated web page
hotline_1StringDedicated hotline 1
remark_1StringRemark of dedicated hotline 1
hotline_2StringDedicated hotline 2
remark_2StringRemark 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.request
url = '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())

How to use the APIs

To learn more, please visit API documentation.