贷款及垫款(按用途划分)-接受存款公司

应用程式介面详细规格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/loans-by-type-dtc

请求参数(必要)

参数名称 描述
segment 用于指示要检索哪组数据。
格式: segment=data segment name (new/old)
例子: segment=new
输出字段(JSON) Swagger格式
名称 类型 计量单位 描述
end_of_month日期期末数字
年份和月份采用ISO格式yyyy-mm,例如1997-01
imp_exp_reexp_fromhk_hkd数字百万港元香港货物的出入口及转口融资
港元
imp_exp_reexp_fromhk_fc数字百万港元香港货物的出入口及转口融资
外币
imp_exp_reexp_fromhk_total数字百万港元香港货物的出入口及转口融资
总计
merch_trade_nonhk_hkd数字百万港元香港境外的商品贸易融资
港元
merch_trade_nonhk_fc数字百万港元香港境外的商品贸易融资
外币
merch_trade_nonhk_total数字百万港元香港境外的商品贸易融资
总计
loans_inhk_hk数字百万港元在香港使用的贷款1
港元
loans_inhk_fc数字百万港元在香港使用的贷款1
外币
loans_inhk_total数字百万港元在香港使用的贷款1
总计
other_loans_outhk_hkd数字百万港元其他在香港境外使用的贷款
港元
other_loans_outhk_fc数字百万港元其他在香港境外使用的贷款
外币
other_loans_outhk_total数字百万港元其他在香港境外使用的贷款
总计
other_loans_unkplace_hkd数字百万港元其他使用地区不明确的贷款
港元
other_loans_unkplace_fc数字百万港元其他使用地区不明确的贷款
外币
other_loans_unkplace_total数字百万港元其他使用地区不明确的贷款
总计
total_loans_hkd数字百万港元贷款及垫款总额
港元
total_loans_fc数字百万港元贷款及垫款总额
外币
total_loans数字百万港元贷款及垫款总额
总计

备注:

1. 在香港使用的贷款是指对香港的经济活动有直接影响的贷款。 这一般视乎该笔贷款是否由香港提供或在香港支付,以及客户的主要业务所在地而定。
2. 2018年12月的在香港/在香港境外使用的贷款的数字已作出重列,以反映认可机构将营运资金贷款重新分类。由于并无2018年12月以前的重新分类贷款数据,因此,在香港/在香港境外使用的贷款(包括其组成项目)的按季及按年增长率可根据没有该重新分类的贷款数据所计算(载于试算表「T3.4.4(old)」)。

应用程式介面例子

Javascript例子

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/loans-by-type-dtc?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/loans-by-type-dtc?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

如何使用应用程式介面

有关详情,请浏覧「应用程式介面规格」。