Skip to main content
GET
/
v1
/
indices
/
by-group
Get Indices By Group
curl --request GET \
  --url https://api.aries.com/v1/indices/by-group \
  --header 'Authorization: Bearer <token>'
{
  "indices": [
    {
      "indexName": "S&P 500",
      "symbol": "SPX",
      "indexGroup": "IND_CBOM",
      "currency": "USD"
    },
    {
      "indexName": "NASDAQ Composite",
      "symbol": "COMP",
      "indexGroup": "IND_CBOM",
      "currency": "USD"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

indexGroup
string
required

Index group identifier (e.g., IND_CBOM, IND_DJI)

Response

200 - application/json

Successful response

indices
object[]