應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/liquidity名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_quarter | 日期 | 採用ISO格式yyyy-qq的年份和季度,例如1997-Q1 | |
coverage_ratio | 數字 | 百分比 | 流動性比率1
季度平均數 流動性覆蓋比率2 |
maintenance_ratio | 數字 | 百分比 | 流動性比率1
季度平均數 流動性維持比率3 |
netstable_fundratio | 數字 | 百分比 | 流動性比率1
季度平均數 穩定資金淨額比率2,5 |
core_fundratio | 數字 | 百分比 | 流動性比率1
季度平均數 核心資金比率4,5 |
備註:
1. 比率按綜合基準計算。 |
2. 適用於第1類機構。 |
3. 適用於第2類機構。 |
4. 適用於第2A類機構。 |
5. 數據從2018年開始提供。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/liquidity?offset=0',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python例子
import urllib.requesturl = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/liquidity?offset=0'with urllib.request.urlopen (url) as req:print (req.read())