Index Real-time Tick Data API Indices API REST API Real-time Tick data for major global stock indices, covering core indices such as SSE Composite Index, CSI 300, Dow Jones, S&P 500, Nasdaq, and Hang Seng. Provides millisecond-accurate index prices, trading volumes, price changes, and timestamps, reflecting the latest market movements in real-time.

Please select

Real-Time Tick

GET
/indices/tick

Request Parameters

regionenumRequired
GB
Market code
codestringRequired
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/tick?region=GB&code=SPX"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

Query URL

GET
https://api.itick.org/indices/tick?region=GB&code=SPX

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "SPX",
    "ld": 6334.38,
    "t": 1754581840476,
    "v": 1000000
  }
}