Skip to main content
GET
/
v1
/
indices
/
bars
Get Index Bars Data
curl --request GET \
  --url https://api.aries.com/v1/indices/bars \
  --header 'Authorization: Bearer <token>'
{
  "bars": [
    {
      "startDate": "12/22/2025",
      "startTime": "9:30 AM",
      "endDate": "12/22/2025",
      "endTime": "9:31 AM",
      "open": 6860,
      "high": 6865,
      "low": 6858.5,
      "close": 6863.25,
      "volume": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

identifier
string
required

Index identifier (e.g., SPX.IND_CBOM)

startTime
string
required

Start time for the bars (MM/DD/YYYY HH:MM am/pm)

endTime
string
required

End time for the bars (MM/DD/YYYY HH:MM am/pm)

precision
enum<string>

Bar precision

Available options:
Minutes,
Hours,
Days
period
integer

Period for the bars

Response

200 - application/json

Successful response

bars
object[]