Money supply – Adjusted for foreign currency swap deposits

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money/supply-adjusted

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
end_of_monthDateAs at end of
Year and Month in ISO format yyyy-mm, For example, 1997-01
m1_hkdNumberHK$ millionM1
HK$
m1_fcNumberHK$ millionM1
F.C.
m1_totalNumberHK$ millionM1
Total
m2_hkdNumberHK$ millionM2
HK$2
m2_fcNumberHK$ millionM2
F.C.3
m2_totalNumberHK$ millionM2
Total
m3_hkdNumberHK$ millionM3
HK$2
m3_fcNumberHK$ millionM3
F.C.3
m3_totalNumberHK$ millionM3
Total

Footnotes:

1. There is a break in data series due to the inclusion of short-term Exchange Fund placements of less than one month since April 1997.
2. Adjusted to include foreign currency swap deposits
3. Adjusted to exclude foreign currency swap deposits

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money/supply-adjusted?offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python Example

import urllib.request
url = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money/supply-adjusted?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.