API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/bank-svf-info/register-ais-lros?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 |
---|---|---|
name | String | Name of Authorized Institution / Local Representative Office |
local_address | String | Address of the principal place of business in Hong Kong |
principle_address | String | Address of the principal place of business outside Hong Kong (only for those incorporated outside Hong Kong) |
type | String | Status |
secstaff_reg_url | String | Link 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.requesturl = '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())