應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending-ais-type名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
overseas_incorp_ais | 數字 | 百萬港元 | 境外註冊認可機構 |
locally_incorp_ais | 數字 | 百萬港元 | 本地註冊認可機構1 |
mainland_bank_subs_ais | 數字 | 百萬港元 | 本地註冊認可機構設於中國內地的銀行附屬公司 |
lending_total | 數字 | 百萬港元 | 總計 |
備註:
1. 包括本地註冊認可機構中國內地分行入帳的貸款。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/mr-lending-ais-type?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-ais-type?offset=0'with urllib.request.urlopen (url) as req:print (req.read())