人民币存款利率

应用程式介面详细规格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/renminbi-dr

API数据查询

输出字段(JSON) Swagger格式
名称 类型 计量单位 描述
end_of_month日期期内数字
年份和月份采用ISO格式yyyy-mm,例如1997-01
deposit_rate_1w数字年率少于10万元人民币的存款利率
1星期
deposit_rate_1m数字年率少于10万元人民币的存款利率
1个月
deposit_rate_3m数字年率少于10万元人民币的存款利率
3个月
deposit_rate_6m数字年率少于10万元人民币的存款利率
6个月
deposit_rate_12m数字年率少于10万元人民币的存款利率
12个月
savings_deposit_rate数字年率少于10万元人民币的存款利率
储蓄存款利率

备注:

1. 持牌银行于二零零四年二月二十五日开始提供人民币存款服务。

应用程式介面例子

Javascript例子

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

如何使用应用程式介面

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