API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/ef-fc-resv-assets/ef-bal-sheet-half-yearly-efbs
| |
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 | |
unaudited_figures | String | Unaudited figures | |
assets_cash_money_at_call | Number | HK$ million | Assets Cash and money at call |
assets_pla_bank_oth_fi_instit | Number | HK$ million | Assets Placements with banks and other financial institutions |
assets_investments | Number | HK$ million | Assets Investments |
assets_fixed_assets | Number | HK$ million | Assets Fixed assets |
assets_other_assets | Number | HK$ million | Assets Other assets |
assets_total | Number | HK$ million | Assets Total |
liab_cert_of_indebt | Number | HK$ million | Liabilities Certificates of indebtedness2 |
liab_gov_iss_curr_notes | Number | HK$ million | Liabilities Government-issued currency notes and coins in circulation2 |
liab_banking_system_bal | Number | HK$ million | Liabilities Balance of the banking system |
liab_ef_bills_notes_iss | Number | HK$ million | Liabilities Exchange Fund Bills and Notes issued3 |
liab_other_instit | Number | HK$ million | Liabilities Placements by other institutions4 |
liab_pla_bank_oth_fi_instit | Number | HK$ million | Liabilities Placements by banks and other financial institutions4 |
liab_govfunds_statubodies | Number | HK$ million | Liabilities Placements by HKSAR government funds and statutory bodies4 |
liab_fiscal_resv | Number | HK$ million | Liabilities Placements by Fiscal Reserves5 |
liab_subsidiaries | Number | HK$ million | Liabilities Placements by subsidiaries |
liab_other | Number | HK$ million | Liabilities Other liabilities |
liab_total | Number | HK$ million | Liabilities Total |
fund_equity | Number | HK$ million | Fund equity |
Footnotes:
1. The balance sheets comprise the accounts of the Exchange Fund only and do not include those of the subsidiary companies. |
2. Starting from January 2005, "Certificates of Indebtedness" and "Government-issued currency notes and coins in circulation" are stated at cost, which is the Hong Kong dollar equivalent of the US dollars required for their redemption at the exchange rate ruling at the balance sheet date. As a result, the figures for "Certificates of Indebtedness" and "Government-issued currency notes and coins in circulation" on the balance sheet are different from those shown in the Currency Board Account (Table 8.3) which represent the Hong Kong dollar face value. |
3. Starting from January 2005, in accordance with the generally accepted accounting practice in Hong Kong, for the purpose of balance sheet presentation Exchange Fund Bills and Notes held as assets of the Exchange Fund are applied to offset the corresponding liabilities. As a result, the figure for "Exchange Fund Bills and Notes issued" on the balance sheet is smaller than that shown in the Currency Board Account (Table 8.3). |
4. Starting from October 2000, "Placements by other institutions" has been broken down into "Placements by banks and other financial institutions" & "Placements by HKSAR government funds and statutory bodies". |
5. Starting from December 2009, "Placements by other HKSAR government funds" has been changed to "Placements by Fiscal Reserves". |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/ef-fc-resv-assets/ef-bal-sheet-half-yearly-efbs?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/ef-fc-resv-assets/ef-bal-sheet-half-yearly-efbs?offset=0'with urllib.request.urlopen (url) as req:print (req.read())