Money supply – Unadjusted 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-unadjusted-fc

Request Parameters (Mandatory)

Parameter Name Description
segment Used to indicate which sets of data are going to retrieve.
Format: segment=data segment name (new/old)
Example: segment=new
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$
m2_fcNumberHK$ millionM2
F.C.
m2_totalNumberHK$ millionM2
Total
m3_hkdNumberHK$ millionM3
HK$
m3_fcNumberHK$ millionM3
F.C.
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.
@ HK$ M1 was boosted by the increase in demand deposits due to the typhoon on 31.08.95.

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/money/supply-unadjusted-fc?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-unadjusted-fc?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.