Index Single Tick API Real-Time Index Transactions 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
  }
}
  1. Batch Real-Time KlineForex Market

    Batch historical and real-time K-line data for multiple forex currency pairs, covering complete OHLC price sequences for multiple currencies including EUR, GBP, JPY, CHF. Supports multiple time periods from minute charts to monthly charts, providing standardized timestamps, opening prices, highest prices, lowest prices, and closing prices data.

  2. Indices MarketReal-Time Quote

    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, Dow Jones, Nasdaq, and Hang Seng. Provides complete market information including latest index prices, price changes, trading volumes, opening prices, and closing prices, updated in real-time.