Batch Indices Ticks API Multi-Index Real-Time Trades Indices API REST API Batch real-time transaction-by-transaction 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 millisecond-accurate timestamps, transaction prices, trading volumes, and buy/sell directions, completely recording every market transaction detail.

Please select

Batch Real-Time Tick

GET
/indices/ticks

Request Parameters

regionenumRequired
GB
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/indices/ticks?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/ticks?region=GB&codes=SPX,DJI

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "SPX": {
      "s": "SPX",
      "ld": 6338.25,
      "t": 1754581081000,
      "v": 1000000
    },
    "DJI": {
      "s": "DJI",
      "ld": 43874.46,
      "t": 1754581081000,
      "v": 100000
    }
  }
}
  1. Real-Time KlineIndices Market

    Complete K-line data for major global stock indices, providing multi-period OHLC price series for indices such as CSI 300, SSE Composite Index, Shenzhen Component Index, ChiNext Index, S&P 500, Nasdaq, and Hang Seng. Supports multiple time periods from minute charts to monthly charts, including opening prices, highest prices, lowest prices, closing prices, and trading volumes.

  2. Indices MarketBatch Real-Time Quote

    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.