應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/market-operation-periodaverage名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
specific_data | 文字 | 指定日子採用格式D-D,例如1-15 | |
market_activities_injection | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 市場活動2 注資 |
market_activities_withdrawal | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 市場活動2 抽資 |
interest_payment | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 外匯基金票據/債券的發行/所付利息 |
discount_window_reversal_injection | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 退還貼現窗拆出資金3 注資 |
discount_window_reversal_withdrawal | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 退還貼現窗拆出資金3 抽資 |
discount_window_activities_lending | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 貼現窗活動 貸款 |
discount_window_activities_borrowing | 數字 | 百萬港元 | 期內總計 總結餘變動情況1 貼現窗活動 借款 |
closing_balance | 數字 | 百萬港元 | 期末數字 總結餘變動情況1 收市結餘 |
備註:
1. 在1996年12月9日前,收市結餘是指香港銀行公會結算所管理銀行在外匯基金開設的帳戶的結餘。自1996年12月9日推出即時支付結算系統起,收市結餘則指持牌銀行根據即時支付結算系統在外匯基金開設的結算帳戶的結餘總額。 |
2. 市場活動是指金管局在銀行同業拆息市場的淨注資或淨抽資。 |
3. 退還貼現窗拆出資金是指收回前一天貼現窗所拆出的資金。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/market-operation-periodaverage?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/monetary-operation/market-operation-periodaverage?offset=0'with urllib.request.urlopen (url) as req:print (req.read())