信用卡貸款調查結果

應用程式介面詳細規格

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())

如何使用應用程式介面

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