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.

Please select

Batch Real-Time Depth

GET
/indices/depths

Request Parameters

regionenumRequired
GB
Market code
codesstringRequired
Product code

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
aarray(object)
Ask orders
pointeger
Level
pnumber
Price
vnumber
Order volume
onumber
Order count
barray(object)
Bid orders
pointeger
Level
pnumber
Price
vnumber
Order volume
onumber
Order count

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

GET
https://api.itick.org/indices/depths?region=GB&codes=SPX,DJI

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
        }
      ]
    }
  }
}
  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.

  2. 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.