World Indices

This endpoint can be called using:

https://api.adiinvestments.net/v1/markets/world-indices

Returns the following information for five global Indices:

  • Current Price

  • Name

  • Percent Change

  • Symbol

Indices provided are the Stoxx 50, the FTSE 100, SSE Composite, the Hang Seng, and the Nikkei 225.

Responses

200 Successful
[
  {
    "currentPrice": 4895.98,
    "longName": "Stoxx 50",
    "percentChange": 0.55,
    "symbol": "^STOXX50E"
  },
  {
    "currentPrice": 8173.0,
    "longName": "FTSE 100",
    "percentChange": 0.64,
    "symbol": "^FTSE"
  },
  {
    "currentPrice": 3351.76,
    "longName": "SSE Composite",
    "percentChange": -1.63,
    "symbol": "000001.SS"
  },
  {
    "currentPrice": 20059.95,
    "longName": "Hang Seng",
    "percentChange": 0.09,
    "symbol": "^HSI"
  },
  {
    "currentPrice": 39894.54,
    "longName": "Nikkei 225",
    "percentChange": -0.96,
    "symbol": "^N225"
  }
]
401 Unauthorized
{"error_code":403,
"error_message":"Invalid API key."}
429 Too Many Requests
{"error_code":429,
"error_message":"Rate limit exceeded. Please try again later."}

Last updated