信用卡贷款调查结果

应用程式介面详细规格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/credit-card-lending-survey

API数据查询

输出字段(JSON) Swagger格式
名称 类型 计量单位 描述
end_of_quarter日期采用ISO格式yyyy-qq的年份和季度,例如1997-Q1
endperiod_noofaccts数字(‘000)期末数字帐户总数
endperiod_delinquent_amt数字百万港元期末数字拖欠帐款(>90日)
during_chargeoff_amt数字百万港元期内数字撇帐额
during_rollover_amt数字百万港元期内数字转期帐款
during_avg_total_receivables数字百万港元期内数字平均应收帐款总额1

备注:

1. 期内平均数 (计算方法为 [期初数额 + 期末数额]/2)。
2. 由于受访机构数目有所增加,因此有关序列在2001年第4季出现中断情况。

应用程式介面例子

Javascript例子

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

如何使用应用程式介面

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