Skip to main content
GET
/
v1
/
indices
/
list
Get Index List
curl --request GET \
  --url https://api.aries.com/v1/indices/list \
  --header 'Authorization: Bearer <token>'
{
  "indices": [
    {
      "symbol": "SPX.IND_CBOM",
      "name": "S&P 500 Index",
      "description": "Standard & Poor's 500 Index",
      "indexGroup": "IND_CBOM",
      "currency": "USD",
      "exchange": "CBOE"
    },
    {
      "symbol": "NDX.IND_CBOM",
      "name": "Nasdaq 100 Index",
      "description": "Nasdaq 100 Technology Sector Index",
      "indexGroup": "IND_CBOM",
      "currency": "USD",
      "exchange": "NASDAQ"
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

indexGroup
string
required

Index group to list indices for (e.g. IND_CBOM, IND_DJI). Required.

Example:

"IND_CBOM"

pageSize
integer

Number of results per page (default: 100, max: 1000)

Required range: 1 <= x <= 1000
Example:

100

nextPage
string

Pagination token for next page

Response

Successful response with list of indices

indices
object[]
required

Array of indices in the specified index group