Skip to main content
GET
/
v1
/
stocks
/
unified-snapshot
Get Unified Snapshot
curl --request GET \
  --url https://api.aries.com/v1/stocks/unified-snapshot \
  --header 'Authorization: Bearer <token>'
{
  "requestId": "1d0ab9bef56cd6a18a809d4c4c0070f1",
  "results": [
    {
      "fmv": 270.66,
      "fmvLastUpdated": 1767606739184712400,
      "lastMinute": {
        "close": 270.66,
        "high": 270.66,
        "low": 270.66,
        "open": 270.66,
        "transactions": 3,
        "volume": 53,
        "vwap": 270.66
      },
      "lastQuote": {
        "ask": 285.79,
        "askExchange": 15,
        "askSize": 100,
        "bid": 258.4,
        "bidExchange": 15,
        "bidSize": 100,
        "lastUpdated": 1767387600000915500,
        "timeframe": "DELAYED"
      },
      "lastTrade": {
        "conditions": [
          12,
          37
        ],
        "exchange": 15,
        "id": "14717",
        "lastUpdated": 1767391050283999700,
        "price": 270.81,
        "size": 3,
        "timeframe": "DELAYED"
      },
      "marketStatus": "early_trading",
      "name": "Apple Inc.",
      "session": {
        "change": -0.2,
        "changePercent": -0.0738,
        "close": 270.66,
        "earlyTradingChange": -0.35,
        "earlyTradingChangePercent": -0.129,
        "high": 271.025,
        "low": 270.371,
        "open": 271.005,
        "previousClose": 271.01,
        "volume": 23380
      },
      "ticker": "AAPL",
      "type": "stocks"
    }
  ],
  "status": "OK"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ticker
string

Single ticker to search

Example:

"AAPL"

type
enum<string>

Asset type

Available options:
stocks,
options,
fx,
crypto,
indices
Example:

"stocks"

tickers
string

Comma-separated list of tickers (max 250)

Example:

"AAPL,TSLA,GOOG"

tickerFrom
string

Ticker >= this value (inclusive)

Example:

"A"

tickerAfter
string

Ticker > this value (exclusive)

Example:

"A"

tickerTo
string

Ticker <= this value (inclusive)

Example:

"Z"

tickerBefore
string

Ticker < this value (exclusive)

Example:

"Z"

order
enum<string>

Sort order

Available options:
asc,
desc
Example:

"asc"

limit
integer

Maximum number of results

Required range: 1 <= x <= 250
Example:

10

sort
string

Sort field

Example:

"ticker"

next
string

Pagination cursor

Response

200 - application/json

Successful response

requestId
string

Unique request ID

results
object[]

Array of unified snapshots

status
string

Status of the response