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": [
    {
      "indexName": "S&P 500",
      "symbol": "SPX",
      "indexGroup": "IND_CBOM",
      "currency": "USD"
    },
    {
      "indexName": "NASDAQ Composite",
      "symbol": "COMP",
      "indexGroup": "IND_CBOM",
      "currency": "USD"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

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. Use this to control pagination size in list views. (default: 100, max: 1000)

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

100

nextPage
string

Pagination token for the next page. Omit it on the first request, then send the returned token to continue paging.

Response

Successful response with list of indices

indices
object[]

Array of indices in the specified index group