US Indices

This endpoint can be called using:

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

Returns the following information for five United States Indices:

  • Current Price

  • Name

  • Percent Change

  • Symbol

Indices provided are the S&P500, the Dow Jones, the NASDAQ, the Russell 2000, and the Volatility Index (VIX).

Responses

200 Successful
[
  {
    "currentPrice": 5881.63,
    "longName": "S&P 500",
    "percentChange": -0.43,
    "symbol": "^GSPC"
  },
  {
    "currentPrice": 42544.22,
    "longName": "Dow Jones",
    "percentChange": -0.07,
    "symbol": "^DJI"
  },
  {
    "currentPrice": 19310.79,
    "longName": "Nasdaq",
    "percentChange": -0.9,
    "symbol": "^IXIC"
  },
  {
    "currentPrice": 2230.16,
    "longName": "Russell 2000",
    "percentChange": 0.11,
    "symbol": "^RUT"
  },
  {
    "currentPrice": 17.35,
    "longName": "VIX",
    "percentChange": -0.29,
    "symbol": "^VIX"
  }
]
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