Batch Indices Depth API Multi-Index Order Book Indices API REST API Batch real-time order book depth data for major global stock indices, covering core indices such as CSI 300, SSE Composite Index, Shenzhen Component Index, S&P 500, Nasdaq, and Hang Seng. Provides complete buy-sell order lists, including multi-level prices and order volumes, with millisecond-level real-time updates.
Batch Real-Time Depth
Request Parameters
Response Parameters
Code Examples
import requests
url = "https://api.itick.org/indices/depths?region=GB&codes=SPX,DJI"
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": {
"SPX": {
"s": "SPX",
"a": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
],
"b": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
]
},
"DJI": {
"s": "DJI",
"a": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
],
"b": [
{
"po": 1,
"p": 0,
"v": 0,
"o": 1
}
]
}
}
}- Batch Real-Time QuoteIndices Market
Batch real-time quote data for major global stock indices, covering core indices such as CSI 300, SSE Composite Index, Shenzhen Component Index, S&P 500, Nasdaq, and Hang Seng. Provides complete market indicators for each index including latest price, price change, trading volume, and amplitude, with millisecond-level update frequency.
- Indices MarketBatch Real-Time Kline
Batch complete K-line data for major global stock indices, covering historical and real-time OHLC price series for core indices such as CSI 300, SSE Composite Index, Shenzhen Component Index, S&P 500, Nasdaq, and Hang Seng. Provides standardized timestamps, opening prices, highest prices, lowest prices, closing prices, and trading volume data, supporting multiple time periods from minute charts to monthly charts.