基金即時行情API 基金即時Tick數據API 債券基金與ETF、LOF套利數據 基金數據API接口 REST API 提供全面的基金數據API。對於場內基金,提供ETF、LOF等品種的即時Tick級成交與盤口數據;對於場外基金,提供準確的盤中即時淨值估算(IOPV)與收盤後官方淨值。數據覆蓋中國基金、美國基金、香港基金等主流市場。
請選擇API KEY
即時成交
GET
/fund/tick
請求參數
regionenum必填
美国基金
市場代碼
codestring必填
產品代碼
回應參數
codenumber
回應代碼
msgstring
回應描述
dataobject
回應結果
sstring
symbol標的代碼
ldnumber
最新價
tnumber
最新成交的時間戳
vnumber
成交數量
程式碼範例
import requests
url = "https://api.itick.org/fund/tick?region=US&code=QQQ"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
查詢 URL
GET
https://api.itick.org/fund/tick?region=US&code=QQQ
回應結果
{
"code": 0,
"msg": null,
"data": {
"s": "QQQ",
"ld": 553.88,
"t": 1754092799000,
"v": 11888
}
}