應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/customer-deposits-by-currency請求參數(必要)
參數名稱 | 描述 |
---|---|
segment | 用於指示要檢索哪組數據。 格式: segment=data segment name (new/old) 例子: segment=new |
輸出字段(JSON) | Swagger格式 |
名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
fc_swap_deposits | 數字 | 百萬港元 | 外幣掉期存款 |
deposits_hkd | 數字 | 百萬港元 | 認可機構存款(已就外幣掉期存款作出調整) 港元2 |
deposits_usd | 數字 | 百萬港元 | 認可機構存款(已就外幣掉期存款作出調整) 美元3 |
deposits_nonusd_fc | 數字 | 百萬港元 | 認可機構存款(已就外幣掉期存款作出調整) 非美元外幣3 |
deposits_all_fc | 數字 | 百萬港元 | 認可機構存款(已就外幣掉期存款作出調整) 所有外幣3 |
deposits_all | 數字 | 百萬港元 | 認可機構存款(已就外幣掉期存款作出調整) 所有貨幣 |
備註:
1. 由於數字自1997年4月起包括不足一個月的外匯基金短期存款,因此有關序列出現中斷情況。 |
2. 已包括外幣掉期存款 |
3. 已扣除外幣掉期存款 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/customer-deposits-by-currency?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/customer-deposits-by-currency?offset=0'with urllib.request.urlopen (url) as req:print (req.read())