API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/ch-statistics-fps-reg
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_month | Date | As at end of Year and Month in ISO format yyyy-mm, For example, 1997-01 | |
mobile_personal | Number | Count | Mobile phone number Personal |
mobile_corporate | Number | Count | Mobile phone number Corporate |
mobile_subtotal | Number | Count | Mobile phone number Sub-total |
mobile_uni_id | Number | Count | Mobile phone number Of which unique proxy identifier2 |
email_personal | Number | Count | Email address Personal |
email_corporate | Number | Count | Email address Corporate |
email_subtotal | Number | Count | Email address Sub-total |
email_uni_id | Number | Count | Email address Of which unique proxy identifier2 |
fpsid_personal | Number | Count | FPS Identifier Personal |
fpsid_corporate | Number | Count | FPS Identifier Corporate |
fpsid_subtotal | Number | Count | FPS Identifier Sub-total |
hkid_personal | Number | Count | HKID Number Personal |
total_personal | Number | Count | Total Personal |
total_corporate | Number | Count | Total Corporate |
total_grand_total | Number | Count | Total Grand-total |
total_uni_id | Number | Count | Total Of which unique proxy identifier2 |
Footnotes:
1. A user may have more than one registration with the FPS, as he/she may register the use of more than one account proxy, and more than one accounts when using mobile number or email address as the account proxy. |
2. A mobile number/email address with multiple registrations is counted once. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/ch-statistics-fps-reg?offset=0',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python Example
import urllib.requesturl = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/ch-statistics-fps-reg?offset=0'with urllib.request.urlopen (url) as req:print (req.read())