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
  }
}
  1. Batch Real-Time KlineFutures Market

    Batch obtain complete K-line data for multiple futures contracts, covering China's four major futures exchanges and mainstream international futures markets. Provide standardized time series data, including opening price, highest price, lowest price, closing price, trading volume, and open interest - complete OHLC indicators, supporting multi-period queries from minute lines to monthly lines.

  2. Fund MarketReal-Time Quote

    Provides comprehensive real-time quote data for exchange-traded funds, covering mainstream types such as ETFs, LOFs, and money market funds. The data includes latest price, change percentage, trading volume, IOPV (Indicative Optimized Portfolio Value), and order book information, delivered through a stable API interface in real-time.