市場操作-期內數字

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/market-operation-periodaverage

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 計量單位 描述
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.request
url = '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())

如何使用應用程式介面

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