API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/cmu-service
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_month | Date | Year and Month in ISO format yyyy-mm, For example, 1997-01 | |
ep_no_of_cmu_members | Number | Number | As at end of period Number of CMU members |
ep_no_of_dil | Number | Number | As at end of period Number of debt issues lodged with the service |
ep_outstanding_amt_dil_with_hkd | Number | mn | As at end of period Outstanding amount of debt issues lodged with the service HK$ |
ep_outstanding_amt_dil_with_rmb | Number | mn | As at end of period Outstanding amount of debt issues lodged with the service RMB |
ep_outstanding_amt_dil_with_usd | Number | mn | As at end of period Outstanding amount of debt issues lodged with the service US$ |
ep_outstanding_amt_dil_with_other_curr | Number | mn | As at end of period Outstanding amount of debt issues lodged with the service Other currencies HK$ equiv. |
ep_outstanding_amt_dil_with_total | Number | mn | As at end of period Outstanding amount of debt issues lodged with the service TOTAL HK$ equiv. |
dp_avg_dt_hkd | Number | mn | During the period Average daily turnover HK$ |
dp_avg_dt_rmb | Number | mn | During the period Average daily turnover RMB |
dp_avg_dt_usd | Number | mn | During the period Average daily turnover US$ |
dp_avg_dt_other_curr | Number | mn | During the period Average daily turnover Other currencies |
dp_avg_dt_total | Number | mn | During the period Average daily turnover TOTAL HK$ equiv. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/cmu-service?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/efbn/cmu-service?offset=0'with urllib.request.urlopen (url) as req:print (req.read())