應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/monetary-operation/market-operation-daily名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_day | 日期 | 日期 日期採用ISO格式yyyy-mm-dd,例如1997-01-01 | |
market_activities | 數字 | 百萬港元 | 總結餘淨額變動情況1 市場活動2 |
interest_payment | 數字 | 百萬港元 | 總結餘淨額變動情況1 外匯基金票據/債券的發行/所付利息 |
discount_window_reversal | 數字 | 百萬港元 | 總結餘淨額變動情況1 退還貼現窗拆出資金3 |
discount_window_activities | 數字 | 百萬港元 | 總結餘淨額變動情況1 貼現窗活動 |
closing_balance | 數字 | 百萬港元 | 收市結餘 |
備註:
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-daily?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-daily?offset=0'with urllib.request.urlopen (url) as req:print (req.read())