應用程式介面詳細規格
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/er-eeri-endperiod名稱 | 類型 | 計量單位 | 描述 |
---|---|---|---|
end_of_month | 日期 | 期末數字 年份和月份採用ISO格式yyyy-mm,例如1997-01 | |
usd | 數字 | 每單位外幣兌換的港元 | 美元 |
gbp | 數字 | 每單位外幣兌換的港元 | 英鎊 |
jpy | 數字 | 每單位外幣兌換的港元 | 日圓 |
cad | 數字 | 每單位外幣兌換的港元 | 加拿大元 |
aud | 數字 | 每單位外幣兌換的港元 | 澳元 |
sgd | 數字 | 每單位外幣兌換的港元 | 新加坡元 |
twd | 數字 | 每單位外幣兌換的港元 | 新台幣 |
chf | 數字 | 每單位外幣兌換的港元 | 瑞士法郎 |
cny | 數字 | 每單位外幣兌換的港元 | 人民幣 |
krw | 數字 | 每單位外幣兌換的港元 | 南韓圓 |
thb | 數字 | 每單位外幣兌換的港元 | 泰銖 |
myr | 數字 | 每單位外幣兌換的港元 | 馬來西亞元 |
dem | 數字 | 每單位外幣兌換的港元 | 馬克 |
nlg | 數字 | 每單位外幣兌換的港元 | 荷蘭盾 |
bef | 數字 | 每單位外幣兌換的港元 | 比利時法郎 |
frf | 數字 | 每單位外幣兌換的港元 | 法國法郎 |
itl | 數字 | 每單位外幣兌換的港元 | 意大利里拉 |
eur | 數字 | 每單位外幣兌換的港元 | 歐元 |
php | 數字 | 每單位外幣兌換的港元 | 菲律賓披索 |
inr | 數字 | 每單位外幣兌換的港元 | 印度盧比 |
idr | 數字 | 每單位外幣兌換的港元 | 印尼盾 |
zar | 數字 | 每單位外幣兌換的港元 | 南非蘭特 |
special_drawing_rights | 數字 | 每單位外幣兌換的港元 | 特別提款權 |
neeri_1983_trade_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(11.1983 = 100) 貿易加權 |
neeri_1983_import_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(11.1983 = 100) 進口貨值加權 |
neeri_1983_export_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(11.1983 = 100) 整體出口貨值加權 |
neeri_2000_trade_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2000 = 100) 貿易加權 |
neeri_2000_import_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2000 = 100) 進口貨值加權 |
neeri_2000_export_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2000 = 100) 整體出口貨值加權 |
neeri_2010_trade_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2010 = 100) 貿易加權 |
neeri_2010_import_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2010 = 100) 進口貨值加權 |
neeri_2010_export_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2010 = 100) 整體出口貨值加權 |
neeri_2020_trade_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2020 = 100) 貿易加權 |
neeri_2020_import_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2020 = 100) 進口貨值加權 |
neeri_2020_export_wgt | 數字 | 每單位外幣兌換的港元 | 名義港匯指數(01.2020 = 100) 整體出口貨值加權 |
備註:
1. 名義港匯指數由政府統計處根據港元兌其他外幣的匯價編制,澳門幣的匯價訂為1,其它匯價是以恒生銀行提供或現鈔平均收市中間兌換價來計算。特別提款權數字由國際貨幣基金組織提供。 |
應用程式介面例子
Javascript例子
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/er-eeri-endperiod?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/er-ir/er-eeri-endperiod?offset=0'with urllib.request.urlopen (url) as req:print (req.read())