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": "Common Stock",
      "price": 175.43,
      "openPrice": 174.2,
      "highPrice": 176,
      "lowPrice": 174,
      "lastPrice": 175.43,
      "closePrice": 175,
      "netChange": 1.93,
      "tradeSeq": 18472931,
      "size": 100,
      "totalVolume": 52000000,
      "tick": 1,
      "tradeTimestamp": "2026-01-15T16:00:00.123Z",
      "tradeExchange": "NASDAQ",
      "bidPrice": 175.42,
      "askPrice": 175.44,
      "bidSize": 200,
      "askSize": 150,
      "bidExchange": "NASDAQ",
      "askExchange": "NASDAQ",
      "quoteTimestamp": "2026-01-15T16:00:00Z",
      "spread": 0.02,
      "midPrice": 175.43,
      "advancers": 0,
      "decliners": 0,
      "unchanged": 0,
      "totalSymbols": 0,
      "nasdaqNetInFlow": 0,
      "nasdaqBuyVolume": 0,
      "nasdaqSellVolume": 0,
      "nyseNetInflow": 0,
      "nyseBuyVolume": 0,
      "nyseSellVolume": 0,
      "instrumentType": "EQUITY",
      "changeStatus": "UP",
      "underlyingSymbol": "",
      "strikePrice": 0,
      "expirationDate": "",
      "putCall": "",
      "name": "Apple Inc.",
      "sicCode": 3571,
      "hasOptions": true,
      "isETF": false,
      "yearEndClose": 185.5,
      "beta": 1.24,
      "sharesOutstanding": 15728700000,
      "shortInterest": 120000000,
      "pctHeldByInstitution": 62.5,
      "assets": 352000000000,
      "liabilities": 290000000000,
      "longTermDebt": 95000000000,
      "EPSCurrentQtrMeanEst": 2.35,
      "EPSCurrentYearMeanEst": 7.2,
      "EPSDiluted": 6.8,
      "EPSLatest12Month": 6.5,
      "EPS3YearGrowthRate": 12.5,
      "EPS5YearGrowthRate": 15,
      "avgVolume4Weeks": 55000000,
      "marketCap": 2730000000000,
      "PE": 28.5,
      "annualYield": 0.55,
      "high52WeekDate": "2025-12-15",
      "low52WeekDate": "2025-04-08",
      "high52WeekPrice": 182.5,
      "low52WeekPrice": 150,
      "ytdHighDate": "2026-01-10",
      "ytdLowDate": "2026-01-03",
      "ytdHigh": 178,
      "ytdLow": 168,
      "openInterest": 0,
      "dividend": 0.96,
      "shortSaleRestricted": 0
    }
  ],
  "errors": []
}

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 (all EquityDetailsDTO fields)

The OpenAPI example uses realistic values for every field on EquityDetailsDTO (not generic placeholders). Live APIs may still omit keys when a value is empty.
{
  "data": [
    {
      "symbol": "AAPL",
      "type": "Common Stock",
      "price": 175.43,
      "openPrice": 174.2,
      "highPrice": 176,
      "lowPrice": 174,
      "lastPrice": 175.43,
      "closePrice": 175,
      "netChange": 1.93,
      "tradeSeq": 18472931,
      "size": 100,
      "totalVolume": 52000000,
      "tick": 1,
      "tradeTimestamp": "2026-01-15T16:00:00.123Z",
      "tradeExchange": "NASDAQ",
      "bidPrice": 175.42,
      "askPrice": 175.44,
      "bidSize": 200,
      "askSize": 150,
      "bidExchange": "NASDAQ",
      "askExchange": "NASDAQ",
      "quoteTimestamp": "2026-01-15T16:00:00Z",
      "spread": 0.02,
      "midPrice": 175.43,
      "advancers": 0,
      "decliners": 0,
      "unchanged": 0,
      "totalSymbols": 0,
      "nasdaqNetInFlow": 0,
      "nasdaqBuyVolume": 0,
      "nasdaqSellVolume": 0,
      "nyseNetInflow": 0,
      "nyseBuyVolume": 0,
      "nyseSellVolume": 0,
      "instrumentType": "EQUITY",
      "changeStatus": "UP",
      "underlyingSymbol": "",
      "strikePrice": 0,
      "expirationDate": "",
      "putCall": "",
      "name": "Apple Inc.",
      "sicCode": 3571,
      "hasOptions": true,
      "isETF": false,
      "yearEndClose": 185.5,
      "beta": 1.24,
      "sharesOutstanding": 15728700000,
      "shortInterest": 120000000,
      "pctHeldByInstitution": 62.5,
      "assets": 352000000000,
      "liabilities": 290000000000,
      "longTermDebt": 95000000000,
      "EPSCurrentQtrMeanEst": 2.35,
      "EPSCurrentYearMeanEst": 7.2,
      "EPSDiluted": 6.8,
      "EPSLatest12Month": 6.5,
      "EPS3YearGrowthRate": 12.5,
      "EPS5YearGrowthRate": 15,
      "avgVolume4Weeks": 55000000,
      "marketCap": 2730000000000,
      "PE": 28.5,
      "annualYield": 0.55,
      "high52WeekDate": "2025-12-15",
      "low52WeekDate": "2025-04-08",
      "high52WeekPrice": 182.5,
      "low52WeekPrice": 150,
      "ytdHighDate": "2026-01-10",
      "ytdLowDate": "2026-01-03",
      "ytdHigh": 178,
      "ytdLow": 168,
      "openInterest": 0,
      "dividend": 0.96,
      "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

Comma-separated list of equity symbols (required). At least one symbol required (e.g., AAPL,MSFT,GOOGL).

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