Skip to main content
GET
/
v1
/
stocks
/
grouped
Get Daily Market Summary
curl --request GET \
  --url https://api.aries.com/v1/stocks/grouped \
  --header 'Authorization: Bearer <token>'
{
  "adjusted": true,
  "queryCount": 1,
  "requestId": "03182c050e5e955bc6e10e78f2890fff",
  "results": [
    {
      "c": 206.25,
      "h": 206.9197,
      "l": 204.65,
      "n": 317,
      "o": 204.81,
      "t": 1736974800000,
      "v": 14444,
      "vw": 205.4248,
      "T": "XNTK"
    }
  ],
  "resultsCount": 1,
  "status": "OK"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

date
string<date>
required

Date in YYYY-MM-DD format

Example:

"2024-01-15"

adjusted
boolean

Adjust for splits

Example:

true

includeOtc
boolean

Include OTC securities

Example:

false

Response

200 - application/json

Successful response

adjusted
boolean

Whether or not the results are adjusted for splits

queryCount
integer

Number of results returned

requestId
string

Unique request ID

results
object[]

Array of grouped daily bars

resultsCount
integer

Total number of results

status
string

Status of the response