Skip to main content
GET
/
v1
/
indices
/
bar
Get Index Bar Data
curl --request GET \
  --url https://api.aries.com/v1/indices/bar \
  --header 'Authorization: Bearer <token>'
{
  "index": {
    "indexName": "S&P 500",
    "symbol": "SPX",
    "indexGroup": "IND_CBOM",
    "valoren": "998434",
    "currency": "USD"
  },
  "bar": {
    "startDate": "12/22/2025",
    "startTime": "10:29 AM",
    "endDate": "12/22/2025",
    "endTime": "10:30 AM",
    "utcOffset": -5,
    "open": 6866.15,
    "high": 6866.74,
    "low": 6865.69,
    "close": 6866.33,
    "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

identifierType
string

Optional. Type of identifier

endTime
string

Required. End time for the bar (MM/DD/YYYY HH:MM am/pm)

precision
string

Optional. Bar precision (Minutes, Hours)

period
string

Optional. Bar period length (e.g., 1, 5, 15)

Response

200 - application/json

Successful response

index
object
required

Index metadata and identification

bar
object
required

OHLC bar data for the requested time period