資本充足狀況

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/capital-adequacy

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
end_of_quarter 日期 期末數字
年份和月份採用ISO格式yyyy-mm,例如2019-09
com_eqt_t1cap_ratio 數字 百分比 資本充足比率1,2
普通股權一級資本比率
t1cap_ratio 數字 百分比 資本充足比率1,2
一級資本比率
total_cap_ratio 數字 百分比 資本充足比率1,2
總資本比率
leverage_ratio 數字 百分比 槓桿比率1,2,3

備註:

1. 數字涵蓋所有本地註冊認可機構。
2. 比率按綜合基準計算。
3. 數據從2018年開始提供。

應用程式介面例子

Javascript例子

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

Python例子

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

如何使用應用程式介面

有關詳情,請瀏覧「應用程式介面規格」。