應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/fc-position-gbp名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
spot_assets | 數字 | 百萬港元 | 英鎊 現貨資產 |
forward_purchases | 數字 | 百萬港元 | 英鎊 遠期買入額 |
spot_liabilities | 數字 | 百萬港元 | 英鎊 現貨負債 |
forward_sales | 數字 | 百萬港元 | 英鎊 遠期沽出額 |
net_spot_position | 數字 | 百萬港元 | 英鎊 現貨未平倉淨額 |
net_forward_position | 數字 | 百萬港元 | 英鎊 遠期未平倉淨額 |
open_position | 數字 | 百萬港元 | 英鎊 未平倉淨額 |
備註:
1. 由1990年7月起,外匯頭寸的定義不再包括結構資產及負債 (包括固定資產及物業投資、境外分行資本、於境外附屬公司和有關連公司的投資,以及借貸資本)。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/fc-position-gbp?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/fc-position-gbp?offset=0'with urllib.request.urlopen (url) as req:print (req.read())