应用程式介面详细规格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending名称 | 类型 | 计量单位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末数字 年份和月份采用ISO格式yyyy-mm,例如1997-01 | |
loans_excl_trade_finance | 数字 | 百万港元 | 中国内地相关贷款(不包括贸易融资) |
trade_finance | 数字 | 百万港元 | 贸易融资 |
lending_total | 数字 | 百万港元 | 总计 |
应用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending?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/mr-lending?offset=0'with urllib.request.urlopen (url) as req:print (req.read())