Index Real-time Quote API Indices API REST API 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.

Please select

Real-Time Quote

GET
/indices/quote

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
onumber
Opening price
pnumber
Previous Closing Price
hnumber
Highest price
lnumber
Lowest price
tnumber
Timestamp of the latest trade
vnumber
Transaction volume
tunumber
Trading amount
tsnumber
Trading status of the symbol
chnumber
Change
chpnumber
Change %

Code Examples

import requests

url = "https://api.itick.io/indices/quote?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.io/indices/quote?region=GB&code=SPX

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "SPX",
    "ld": 6827.42,
    "o": 6886.85,
    "p": 6886.85,
    "h": 6899.85,
    "l": 6801.79,
    "t": 1765573268000,
    "v": 3086000000,
    "tu": 21106572620000,
    "ch": -73.59,
    "chp": -1.07,
    "ts": 0
  }
}