Skip to main content
GET
/
v1
/
stocks
/
snapshot
Get Full Market Snapshot
curl --request GET \
  --url https://api.aries.com/v1/stocks/snapshot \
  --header 'Authorization: Bearer <token>'
{
  "count": 3,
  "status": "OK",
  "tickers": [
    {
      "day": {
        "close": 444.176,
        "high": 445.955,
        "low": 442.158,
        "open": 442.158,
        "volume": 151395,
        "vwap": 445.03447
      },
      "lastQuote": {
        "askPrice": 0,
        "askSize": 0,
        "bidPrice": 0,
        "bidSize": 0,
        "timestamp": 0
      },
      "lastTrade": {
        "tradeId": "71675577320245",
        "price": 0,
        "size": 0,
        "timestamp": 0,
        "exchangeId": 0
      },
      "min": {
        "accumulatedVolume": 151395,
        "close": 444.187,
        "high": 444.57,
        "low": 444.187,
        "numberOfTrades": 59,
        "open": 444.57,
        "timestamp": 1767606360000,
        "volume": 2532,
        "vwap": 444.40449
      },
      "prevDay": {
        "close": 438.07,
        "high": 458.34,
        "low": 435.3,
        "open": 457.8,
        "volume": 85351571,
        "vwap": 444.0976
      },
      "ticker": "TSLA",
      "todaysChange": 0,
      "todaysChangePerc": 0,
      "updated": 1767606420000000000
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

tickers
string

Comma-separated list of tickers

Example:

"AAPL,TSLA,GOOG"

includeOtc
boolean

Include OTC securities

Example:

false

Response

200 - application/json

Successful response

count
integer

Number of tickers returned

status
string

Status of the response

tickers
object[]

Array of ticker snapshots