Skip to main content
GET
/
v1
/
marketdata
/
equities
/
details
Get equity details
curl --request GET \
  --url https://api.aries.com/v1/marketdata/equities/details \
  --header 'Authorization: Bearer <token>'
{ "data": [ { "symbol": "AAPL", "type": "ETRADE", "price": 267.53, "openPrice": 272.78, "highPrice": 273.06, "lowPrice": 269.65, "lastPrice": 271.06, "closePrice": 273.43, "netChange": -3.53, "tradeSeq": 1009904, "size": 1, "totalVolume": 300562, "tick": 0, "tradeTimestamp": "2026-04-27T05:38:10.674000-04:00", "tradeExchange": "PACF|NYSE ARCA (Pacific)", "bidPrice": 267.5, "askPrice": 268, "bidSize": 1400, "askSize": 500, "bidExchange": "EDGX|Direct Edge X", "askExchange": "BATS|BATS Trading", "quoteTimestamp": "2026-04-27T05:38:09.901000-04:00", "spread": 0.5, "midPrice": 267.75, "instrumentType": "Equity", "name": "Apple Inc.", "sicCode": 3663, "hasOptions": true, "isETF": false, "sharesOutstanding": 14681140, "assets": 379297000, "liabilities": 291107000, "longTermDebt": 905090000, "EPSDiluted": 2.84, "EPSLatest12Month": 18.3333, "EPS3YearGrowthRate": 17.6111, "EPS5YearGrowthRate": 11.0713, "avgVolume4Weeks": 38174153, "marketCap": 30064771072, "PE": 32.181, "high52WeekDate": "2025-12-03T00:00:00Z", "low52WeekDate": "2025-04-08", "high52WeekPrice": 288.62, "low52WeekPrice": 169.2101, "dividend": 0.26, "shortSaleRestricted": 0 } ], "errors": [] }

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Response shape

  • data: Array of objects; each mirrors Redis snapshot fields (trade, quote, fundamentals). Optional keys are omitted when empty. hasOptions and isETF are always booleans.
  • errors: Present per the API schema when a symbol cannot be returned; see the reference below for the object shape.

Demo response (representative live payload)

Live responses are typically sparse. Fields are omitted when data is unavailable in cache/upstream. Do not assume every EquityDetailsDTO key appears for every symbol.
{
  "data": [
    {
      "symbol": "AAPL",
      "type": "ETRADE",
      "price": 267.53,
      "openPrice": 272.78,
      "highPrice": 273.06,
      "lowPrice": 269.65,
      "lastPrice": 271.06,
      "closePrice": 273.43,
      "netChange": -3.53,
      "tradeSeq": 1009904,
      "size": 1,
      "totalVolume": 300562,
      "tick": 0,
      "tradeTimestamp": "2026-04-27T05:38:10.674000-04:00",
      "tradeExchange": "PACF|NYSE ARCA (Pacific)",
      "bidPrice": 267.5,
      "askPrice": 268,
      "bidSize": 1400,
      "askSize": 500,
      "bidExchange": "EDGX|Direct Edge X",
      "askExchange": "BATS|BATS Trading",
      "quoteTimestamp": "2026-04-27T05:38:09.901000-04:00",
      "spread": 0.5,
      "midPrice": 267.75,
      "instrumentType": "Equity",
      "name": "Apple Inc.",
      "sicCode": 3663,
      "hasOptions": true,
      "isETF": false,
      "sharesOutstanding": 14681140,
      "assets": 379297000,
      "liabilities": 291107000,
      "longTermDebt": 905090000,
      "EPSDiluted": 2.84,
      "EPSLatest12Month": 18.3333,
      "EPS3YearGrowthRate": 17.6111,
      "EPS5YearGrowthRate": 11.0713,
      "avgVolume4Weeks": 38174153,
      "marketCap": 30064771072,
      "PE": 32.181,
      "high52WeekDate": "2025-12-03T00:00:00Z",
      "low52WeekDate": "2025-04-08",
      "high52WeekPrice": 288.62,
      "low52WeekPrice": 169.2101,
      "dividend": 0.26,
      "shortSaleRestricted": 0
    }
  ],
  "errors": []
}

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

symbols
string
required

One or more uppercase ticker symbols, separated by commas (e.g. AAPL,MSFT,GOOGL). At least one is required. The response order matches the request order.

Example:

"AAPL,MSFT"

Response

data holds per-symbol objects matching EquityDetailsDTO. Omitted keys were empty in cache. See schema for the errors array shape when a symbol cannot be returned.

Wrapper for GET /v1/marketdata/equities/details: data for successful symbols, errors when applicable.

data
object[]

Symbols that returned a non-empty snapshot with valid quote data

errors
object[]

Per-symbol error entries when a requested symbol cannot be included in data