The Register of Securities Staff of AIs is a database of current and former relevant individuals, i.e.
current and former staff of authorized institutions engaging in securities business and/or other regulated
activities, as defined under the Securities and Futures Ordinance, in Hong Kong (See "Supervisory Policy Manual SB-1 Supervision of regulated activities of
SFC-registered authorized institutions" posted on the HKMA website for further information).
It is a statutory condition of registration that authorized institutions must ensure that their relevant individuals are fit and proper to be so engaged. Pursuant to section 20(4A) of the Banking Ordinance, the purpose of this Register is to enable any member of the public to ascertain whether a person he is dealing with is a relevant individual in relation to a registered institution, and if so, to ascertain the registration particulars of such person.
You may only use the information provided in this Register for the specified purpose as set out above, and use for any other purpose is prohibited. Pursuant to the requirements under the Personal Data (Privacy) Ordinance, any use of the personal data on this Register for purposes other than the above-mentioned purpose requires the express consent given voluntarily by the individuals who are the subjects of the data.
The HKMA Register contains, among other things, records of public disciplinary actions (if any) taken by the SFC and/or the HKMA against relevant individuals. Such records are kept in the Register for a period of 5 years from the date when the disciplinary action takes effect.
By publishing this Register, the HKMA does not guarantee the performance or creditworthiness of any relevant individual or authorized institution.
By clicking 'Continue', you acknowledge that you have read and understood the above notification, and that you will use the information in this Register for the specified purpose only.
CONTINUE
API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/bank-svf-info/register-ais-secstaff?lang=en&searchtype=engName&is_curr_rel_indiv=0&surname=chan
Request Parameters (Mandatory)
Parameter Name |
Description |
lang |
To input the language selected to output.
Format: lang=(en|tc)
Example: lang=en |
searchtype |
To input the search type and according to selected search type, you
need
to input different parameter.
Format: searchtype=(engName/chiName/regNo)
engName: search by securities staff English name
Example: searchtype=engName&surname=chan&forename=tai
man&is_curr_rel_indiv=0
Input parameter: (surname, forename, is_curr_rel_indiv)
surname: To input the surname of securities staff(either surname or/and forename for
English
name only)
forename: To input the forename of securities staff(either surname or/and forename for
English name only)
is_curr_rel_indiv: To input current relevant individuals/current and former relevant
individuals(must choose one)
0 – current relevant individuals
1 – current and former relevant individuals
chiName: search by securities staff Chinese name
Example:
searchtype=chiName&chinesename=陳大文&is_curr_rel_indiv=0
Input parameter: (chinesename, is_curr_rel_indiv)
chinesename: (for Chinese name only)
is_curr_rel_indiv: To input current relevant individuals/current and former relevant
individuals(must choose one)
0 – current relevant individuals
1 – current and former relevant individuals
regNo: search by HKMA registration number
Example:
reg_code=AB0000&is_curr_rel_indiv=0&searchtype=regNo
Input parameter: (reg_code, is_curr_rel_indiv)
reg_code: To input the HKMA registration number(mandatory)
is_curr_rel_indiv: To input current relevant individuals/current and former relevant
individuals(must choose one)
0 – current relevant individuals
1 – current and former relevant individuals |
Name |
Type |
Description |
name |
String |
Name of Relevant Individual |
name_tc |
String |
Chinese Name of Relevant Individual |
reg_code |
String |
HKMA Registration Number |
current_registration |
Array |
Current Registration |
reg_inst_name |
String |
Registered Institution |
reg_act |
String |
Regulated Activity |
eng_first_date |
String |
First date of engagement |
is_eo |
String |
Is an Executive Officer? (Yes / No) |
capacity |
String |
Capacity |
remarks |
String |
Remarks |
business_address |
Array |
Business Address |
reg_inst_name |
String |
Name of Registered Institution |
sfc_ce_num |
String |
SFC CE number |
business_address |
String |
Business Address |
conditions |
Array |
Conditions |
reg_inst_name |
String |
Registered Institution |
effective_date |
String |
Effective Date |
description |
String |
Description |
registration_history |
Array |
Registration History |
reg_code |
String |
HKMA Registration Number |
reg_inst_name |
String |
Registered Institution |
reg_act |
String |
Regulated Activity |
effective_period |
String |
Effective Period |
is_eo |
String |
Is an Executive Officer? (Yes / No) |
public_disciplinary_action |
Array |
Public Disciplinary Actions |
rec_pub_dis_act_by_sfc |
Array |
Records of public disciplinary actions taken against the relevant individual by the SFC
|
action_date |
String |
Action Date |
action_taken |
String |
Action Taken |
pr_en |
String |
English Press Release Download |
pr_tc |
String |
Chinese Press Release Download |
rec_pub_dis_act_by_hkma |
Array |
Records of public disciplinary actions taken against the relevant individual by the HKMA
|
action_date |
String |
Action Date |
action_taken |
String |
Action Taken |
pr_en |
String |
English Press Release Download |
pr_tc |
String |
Chinese Press Release Download |
API Examples
Javascript Example
$.ajax({
url: 'https://api.hkma.gov.hk/public/bank-svf-info/register-ais-secstaff?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/register-ais-secstaff?lang=en'
with urllib.request.urlopen (url) as req:
print (req.read())