Fund Batch Real-time Tick Data API 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
    }
  }
}