Fund Tick API Fund Transaction Data Funds API REST API Provides batch real-time tick data streams for exchange-traded ETFs and LOFs, fully presenting transaction details for multiple funds. Supports multiple time periods from minute lines to monthly lines, with data containing millisecond-accurate timestamps, transaction prices, trading volumes and buy/sell directions, continuously updated in real-time.

Please select

Batch Real-Time Tick

GET
/fund/ticks

Request Parameters

regionenumRequired
US
Market code
codesstringRequired
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/ticks?region=US&codes=QQQ,IEF"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

###Query URL

GET
https://api.itick.org/fund/ticks?region=US&codes=QQQ,IEF

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "QQQ": {
      "s": "QQQ",
      "ld": 553.88,
      "t": 1754092799000,
      "v": 11888
    },
    "IEF": {
      "s": "IEF",
      "ld": 95.68,
      "t": 1754091630000,
      "v": 10
    }
  }
}
  1. Real-Time KlineFund Market

    Provides complete K-line data query for exchange-traded funds (such as ETFs and LOFs). Supports multiple time periods from minute lines to monthly lines, returning standard OHLC fields including opening price, highest price, lowest price, closing price, and trading volume. The data includes adjustments for continuity.

  2. Fund MarketBatch Real-Time Quote

    Provides batch real-time quote data streams for exchange-traded ETFs and LOFs, with data covering markets including Chinese funds, US funds, and Hong Kong funds, fully presenting key indicators such as latest price, change percentage, trading volume, and IOPV net asset value estimation for multiple funds. The data is continuously updated in real-time with millisecond latency to ensure accurate synchronization of market quotes.