Register of AIs and LROs

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/bank-svf-info/register-ais-lros?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
nameStringName of Authorized Institution / Local Representative Office
local_addressStringAddress of the principal place of business in Hong Kong
principle_addressStringAddress of the principal place of business outside Hong Kong (only for those incorporated outside Hong Kong)
typeStringStatus
secstaff_reg_urlStringLink to HKMA register of securities staff of Authorized Institutions
latitude Number Latitude
longitude Number Longitude

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/bank-svf-info/register-ais-lros?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/register-ais-lros?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.