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 - 9am1 |
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 - 11am1 |
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 - 2pm1 |
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 - 4pm1 |
Footnotes:
1. This represents the dedicated repo facility for Primary Liquidity Providers (PLP), which includes both intraday and overnight repo. |
2. The above figures represent the snapshots of the outstanding amount borrowed under the various facilities as at 9:00 a.m., 11:00 a.m., 2:00 p.m and 4:00 p.m. respectively. |
3. Open API provides data on and after 30 September 2020 only. |
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())