Index Batch Real-time Tick Data API 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.io/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.io/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
    }
  }
}