List of hotlines for authenticating the identity of callers claiming to be bank representatives

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/bank-svf-info/hotlines-auth-retailbanks-rep?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
retailbank_nameStringRetail Bank
hotline_1StringHotline (1)
remark_1StringRemark of Hotline (1)
hotline_2StringHotline (2)
remark_2StringRemark of Hotline (2)
hotline_3StringHotline (3)
remark_3StringRemark of Hotline (3)

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/bank-svf-info/hotlines-auth-retailbanks-rep?lang=en&offset=0',
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/hotlines-auth-retailbanks-rep?lang=en&offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.