Fund Real-time Tick Data API Funds API REST API Provides comprehensive fund data API. For on-exchange funds, it offers real-time tick-level transactions and order book data for ETFs, LOFs and other varieties; for off-exchange funds, it provides accurate intraday real-time NAV estimates (IOPV) and official NAV after market close. Data covers mainstream markets including Chinese funds, US funds, and Hong Kong funds.

Please select

Real-Time Tick

GET
/fund/tick

Request Parameters

regionenumRequired
US
Market code
codestringRequired
Product code

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
ldnumber
Latest price
tnumber
Timestamp of the latest trade
vnumber
Transaction volume

Code Examples

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)

###Query URL

GET
https://api.itick.org/fund/tick?region=US&code=QQQ

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "QQQ",
    "ld": 553.88,
    "t": 1754092799000,
    "v": 11888
  }
}