API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/ch-statistics-turnover-fps-rmb-payment-vol
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_month | Date | During Year and Month in ISO format yyyy-mm, For example, 1997-01 | |
rtctp_pp_payee_proxy_id | Number | Volume | Real time credit transfer payment (i) Payments initiated by personal accounts using payee proxy IDs |
rtctp_pp_payee_acc_no | Number | Volume | Real time credit transfer payment (ii) Payments initiated by personal accounts using payee account numbers |
rtctp_other_payment | Number | Volume | Real time credit transfer payment (iii) Other payment |
rtctp | Number | Volume | Real time credit transfer payment Total real time credit transfer payment (a) |
rtddp | Number | Volume | Real time direct debit payment (b) |
rt_payment | Number | Volume | Real time mode payment (a+b) |
bat_payment | Number | Volume | Batch mode payment (c) |
total | Number | Volume | Total (a)+(b)+(c) |
Footnotes:
1. Faster Payment System was fully launched on 30 September 2018 |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/ch-statistics-turnover-fps-rmb-payment-vol?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-turnover-fps-rmb-payment-vol?offset=0'with urllib.request.urlopen (url) as req:print (req.read())