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

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

type
enum<string>

Asset type filter. Use it to narrow unified snapshots to supported instrument classes.

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

"stocks"

tickers
string

Single ticker symbol filter. Enter one ticker such as AAPL to narrow results to one company.

Example:

"AAPL"

tickersAnyOf
string

Comma-separated list of ticker symbols (maximum 250).

Example:

"AAPL,TSLA,GOOG"

tickerFrom
string

Ticker lower-bound filter. Returns symbols alphabetically on or after this ticker.

Example:

"A"

tickerAfter
string

Ticker lower-bound filter. Returns symbols alphabetically after this ticker, excluding the ticker itself.

Example:

"A"

tickerTo
string

Ticker upper-bound filter. Returns symbols alphabetically on or before this ticker.

Example:

"Z"

tickerBefore
string

Ticker upper-bound filter. Returns symbols alphabetically before this ticker, excluding the ticker itself.

Example:

"Z"

order
enum<string>

Sort order for returned records. Use asc for oldest first or desc for newest first when supported. Sort direction for results. Use ascending for oldest or smallest first, descending for newest or largest first.

Available options:
asc,
desc
Example:

"asc"

limit
integer

Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits.

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

10

sort
string

Field used to sort results. Enter one of the sort fields supported by this endpoint.

Example:

"ticker"

next
string

Pagination cursor from the previous response. Omit it on the first request, then send the returned cursor to fetch the next page.

Response

Successful response

nextUrl
string

URL for next page of results

requestId
string

Unique request ID

results
object[]

Array of unified snapshots

status
string

Status of the response