Fund Batch Real-time Depth API Funds API REST API Provides batch real-time order book data streams for exchange-traded ETFs and LOFs, fully presenting multiple levels of buy/sell prices, order volumes, and order book depth for multiple funds. The data is continuously updated in real-time with millisecond latency to ensure accurate synchronization of market depth.
Batch Real-Time Depth
Request Parameters
Response Parameters
Code Examples
import requests
url = "https://api.itick.org/fund/depths?region=US&codes=QQQ,IEF"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
###Query URL
Response Result
{
"code": 0,
"msg": null,
"data": {
"QQQ": {
"s": "QQQ",
"a": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
],
"b": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
]
},
"IEF": {
"s": "IEF",
"a": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
],
"b": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
]
}
}
}- Batch Real-Time QuoteFund Market
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.
- Fund MarketBatch Real-Time Kline
Provides batch K-line data streams for exchange-traded ETFs and LOFs, fully presenting OHLC indicators such as opening price, highest price, lowest price, closing price, and trading volume for multiple funds. Supports multi-period queries from minute lines to monthly lines, with data adjusted for continuity.