应用程式介面详细规格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/other-mr-non-bank-exposures名称 | 类型 | 计量单位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末数字 年份和月份采用ISO格式yyyy-mm,例如1997-01 | |
ndi_obs_exposures | 数字 | 百万港元 | 可转让债务工具及其他资产负债表内的风险承担 |
obs_exposures | 数字 | 百万港元 | 资产负债表外的风险承担 |
lending_total | 数字 | 百万港元 | 总计 |
应用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/other-mr-non-bank-exposures?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/other-mr-non-bank-exposures?offset=0'with urllib.request.urlopen (url) as req:print (req.read())