API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/monetary-statistics|
| |
| 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 | |
| notes_coins_circulation | Number | HK$ million | Monetary Base Notes & coins in circulation |
| aggr_balance | Number | HK$ million | Monetary Base Aggregate Balance1 |
| ef_bills_notes | Number | HK$ million | Monetary Base Exchange Fund Bills & Notes2 |
| monetary_base_total | Number | HK$ million | Monetary Base Total |
| m1_total | Number | HK$ million | Money supply M1 Total |
| m1_hkd | Number | HK$ million | Money supply M1 HK$ |
| m2_total | Number | HK$ million | Money supply M2 Total |
| m2_hkd | Number | HK$ million | Money supply M2 HK$3 |
| m3_total | Number | HK$ million | Money supply M3 Total |
| m3_hkd | Number | HK$ million | Money supply M3 HK$3 |
| exrate_hkd_usd | Number | % per annum | Exchange Rates HK$/US$ |
| nominal_eff_exrate_index | Number | % per annum | Exchange Rates Nominal Effective Exchange Rate Index4 (01.2010 = 100) |
| hibor_fixing_overnight | Number | % per annum | Interest rates HIBOR Fixing Overnight5 |
| hibor_fixing_3m | Number | % per annum | Interest rates HIBOR Fixing 3-month5 |
| deposit_rate_saving | Number | % per annum | Interest rates Deposit rates6 Savings Deposits |
| deposit_rate_3m | Number | % per annum | Interest rates Deposit rates 3-month time deposits6 |
| yield_efpaper_3m | Number | % per annum | Interest rates Yield on Exchange Fund paper 3-month |
| yield_govbond_10y | Number | % per annum | Interest rates Yield on Government Bond 10-year |
| best_lending_rate | Number | % per annum | Interest rates Best Lending Rate7 |
| discount_window_base_rate | Number | % per annum | Interest rates Discount Window Base Rate |
Footnotes:
| 1. Before the Discount Window activities. |
| 2. At market value. |
| 3. Adjusted to include foreign currency swap deposits. |
| 4. Trade weighted nominal effective exchange rate index. |
| 5. The Hong Kong dollar Interest Settlement Rates are released by the Hong Kong Association of Banks. |
| 6. Interest rates quoted by a number of major licensed banks. |
| 7. Best lending rate quoted by HSBC. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/financial/monetary-statistics?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/financial/monetary-statistics?offset=0'with urllib.request.urlopen (url) as req:print (req.read())