Skip to main content
GET
/
v1
/
stocks
/
open-close
Get Daily Ticker Summary
curl --request GET \
  --url https://api.aries.com/v1/stocks/open-close \
  --header 'Authorization: Bearer <token>'
{
  "afterHours": 238.5993,
  "close": 237.87,
  "from": "2025-01-15",
  "high": 238.96,
  "low": 234.43,
  "open": 234.635,
  "preMarket": 233.79,
  "status": "OK",
  "symbol": "AAPL",
  "volume": 39822169
}

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"

date
string<date>
required

Date in YYYY-MM-DD format

Example:

"2024-01-15"

adjusted
boolean

Adjust for splits

Example:

true

Response

200 - application/json

Successful response

afterHours
number

After hours price

close
number

Closing price

from
string

Date in YYYY-MM-DD format

high
number

High price

low
number

Low price

open
number

Opening price

preMarket
number

Pre-market price

status
string

Status of the response

symbol
string

Stock ticker symbol

volume
integer

Trading volume