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",
      "name": "Apple Inc",
      "description": "Apple Inc. designs, manufactures, and markets smartphones...",
      "assetType": "Common Stock",
      "sector": "Technology",
      "industry": "Consumer Electronics",
      "exchange": "XNAS",
      "lastPrice": 175.43,
      "change": 1.93,
      "changePercent": 0.011,
      "previousClose": 173.5,
      "open": 174.2,
      "high": 176,
      "low": 174,
      "volume": 52000000,
      "bid": 175.42,
      "bidSize": 100,
      "ask": 175.44,
      "askSize": 200,
      "timestamp": 1732459800,
      "marketCapitalization": 2730000000000,
      "ebitda": 130541000000,
      "pegRatio": 2.5,
      "bookValue": 4.01,
      "dividendPerShare": 0.96,
      "dividendYield": 0.0055,
      "eps": 6.15,
      "beta": 1.24,
      "movingAverage50Day": 170.25,
      "movingAverage200Day": 165.5
    }
  ],
  "errors": []
}

Authorizations

Authorization
string
header
required

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

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

Equity details retrieved successfully. Response: data (array of EquityDetailsDTO) and errors (array of SymbolError). Fields in each item may be omitted when empty (cache-backed). See EquityDetailsDTO schema for all possible fields.

Response for GET /v1/marketdata/equities/details

data
object[]
required

Array of equity details (from cache)

errors
object[]
required

Per-symbol errors (e.g. no data, fetch failed)