API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money-markets/liab-dt-other-ais
| |
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 | |
pay_on_dem_money_call_hkd | Number | HK$ million | Payable on demand and money at call HK$ |
pay_on_dem_money_call_fc | Number | HK$ million | Payable on demand and money at call F.C. |
pay_on_dem_money_call_total | Number | HK$ million | Payable on demand and money at call Total |
repay_or_call_in_3m_hkd | Number | HK$ million | Repayable or callable within 3 months HK$ |
repay_or_call_in_3m_fc | Number | HK$ million | Repayable or callable within 3 months F.C. |
repay_or_call_in_3m_total | Number | HK$ million | Repayable or callable within 3 months Total |
repay_or_call_oth_than_3m_hkd | Number | HK$ million | Repayable or callable later than 3 months HK$ |
repay_or_call_oth_than_3m_fc | Number | HK$ million | Repayable or callable later than 3 months F.C. |
repay_or_call_oth_than_3m_total | Number | HK$ million | Repayable or callable later than 3 months Total |
total_loans_hkd | Number | HK$ million | Total HK$ |
total_loans_fc | Number | HK$ million | Total F.C. |
total_loans | Number | HK$ million | Total Total |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money-markets/liab-dt-other-ais?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/money-markets/liab-dt-other-ais?offset=0'with urllib.request.urlopen (url) as req:print (req.read())