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"
}

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

date
string<date>
required

Date in YYYY-MM-DD format. Enter the specific calendar date you want to query.

Example:

"2024-01-15"

adjusted
boolean

Whether to adjust historical prices for stock splits. Use true for normalized charting and false for raw market data.

Example:

true

includeOtc
boolean

Whether to include over-the-counter securities. Use true only when your product needs OTC market coverage.

Example:

false

Response

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