API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-oustanding-original-maturity
| |
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 | |
efb_91d | Number | HK$ million | Exchange Fund Bills 91-day |
efb_182d | Number | HK$ million | Exchange Fund Bills 182-day |
efb_364d | Number | HK$ million | Exchange Fund Bills 364-day |
efb | Number | HK$ million | Exchange Fund Bills |
efn | Number | HK$ million | Exchange Fund Notes |
efbn_total | Number | HK$ million | Outstanding amount of Exchange Fund Bills & Notes Total |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-oustanding-original-maturity?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/efbn-oustanding-original-maturity?offset=0'with urllib.request.urlopen (url) as req:print (req.read())