Fund K-Line Data API Funds API REST API 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.

Please select

Real-Time Kline

GET
/fund/kline

Request Parameters

regionenumRequired
US
Market code
codestringRequired
Product code
kTypeenumRequired
5 minutes
Interval: 1 minute, 2 five minutes, 3 fifteen minutes, 4 thirty minutes, 5 one hour, 8 one day, 9 one week, 10 one month
etstring
When the query end timestamp (e.g., 1751328000000) is empty, it defaults to the current timestamp.
limitstringRequired
Number of records to query

Response Parameters

codenumber
Response code
msgstring
Response description
dataarray(object)
Response result
tunumber
Transaction amount
cnumber
Closing price of the Kline
tnumber
Timestamp
vnumber
Transaction volume
hnumber
Highest price of the Kline
lnumber
Lowest price of the Kline
onumber
Opening price of the Kline

Code Examples

import requests

url = "https://api.itick.org/fund/kline?region=US&code=QQQ&kType=2&limit=10"

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

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

print(response.text)

###Query URL

GET
https://api.itick.org/fund/kline?region=US&code=QQQ&kType=2&limit=10

Response Result

{
  "code": 0,
  "msg": null,
  "data": [
    {
      "tu": 4813493.44,
      "c": 569.24,
      "t": 1754610900000,
      "v": 8456,
      "h": 569.24,
      "l": 569.24,
      "o": 569.24
    }
  ]
}
  1. Real-Time DepthFund Market

    Provides real-time order book depth data for exchange-traded ETFs and LOFs, fully displaying multiple levels of buy/sell prices, order volumes, and real-time changes in the order book. The data is accurate to the millisecond level, helping you analyze market liquidity and identify key support and resistance levels.

  2. Fund MarketBatch Real-Time Tick

    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.