Skip to main content
GET
/
v1
/
stocks
/
prev
Get Previous Day Bar
curl --request GET \
  --url https://api.aries.com/v1/stocks/prev \
  --header 'Authorization: Bearer <token>'
{
  "adjusted": true,
  "queryCount": 1,
  "requestId": "82a13adb7cdd6b2dab0c4bea3cba1540",
  "results": [
    {
      "c": 271.01,
      "h": 277.84,
      "l": 269,
      "n": 641453,
      "o": 272.255,
      "t": 1767387600000,
      "v": 37782525,
      "vw": 271.9204,
      "T": "AAPL"
    }
  ],
  "resultsCount": 1,
  "status": "OK",
  "ticker": "AAPL"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ticker
string
required

Stock ticker symbol

Example:

"AAPL"

adjusted
boolean

Adjust for splits

Example:

true

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 containing previous day bar

resultsCount
integer

Total number of results

status
string

Status of the response

ticker
string

Stock ticker symbol