API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/daily-monetary-statistics/usage-rmb-liquidity-fac
| |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_date | Date | Daily figure Date in ISO format yyyy-mm-dd, For example, 1997-01-01 |
|
intraday_repo_at_0900 | Number | RMB million | Intraday repo – 9am |
overnight_repo_at_0900 | Number | RMB million | Overnight repo – 9am |
plp_fac_at_0900 | Number | RMB million | PLP Facility – 9am |
intraday_repo_at_1100 | Number | RMB million | Intraday repo – 11am |
overnight_repo_at_1100 | Number | RMB million | Overnight repo – 11am |
plp_fac_at_1100 | Number | RMB million | PLP Facility – 11am |
intraday_repo_at_1400 | Number | RMB million | Intraday repo – 2pm |
overnight_repo_at_1400 | Number | RMB million | Overnight repo – 2pm |
plp_fac_at_1400 | Number | RMB million | PLP Facility – 2pm |
intraday_repo_at_1600 | Number | RMB million | Intraday repo – 4pm |
overnight_repo_at_1600 | Number | RMB million | Overnight repo – 4pm |
plp_fac_at_1600 | Number | RMB million | PLP Facility – 4pm |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/daily-monetary-statistics/usage-rmb-liquidity-fac?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/daily-monetary-statistics/usage-rmb-liquidity-fac?offset=0'with urllib.request.urlopen (url) as req:print (req.read())