curl --request GET \
--url https://api.aries.com/v1/marketdata/equities/details \
--header 'Authorization: Bearer <token>'{
"data": [
{
"address": "One Apple Park Way, Cupertino, CA 95014",
"alphaVantageUpdatedAt": "2025-11-24T10:00:00Z",
"askExchange": "NASDAQ",
"askPrice": 175.44,
"assetType": "Common Stock",
"assets": 352755000000,
"beta": 1.24,
"bidExchange": "NASDAQ",
"bidPrice": 175.42,
"bidSize": 100,
"bookValue": 4.01,
"closePrice": 173.5,
"description": "Apple Inc. designs, manufactures, and markets smartphones...",
"dilutedEPSTTM": 6.15,
"dividendPerShare": 0.96,
"dividendYield": 0.0055,
"ebitda": 130541000000,
"eps": 6.15,
"eps3YearGrowthRate": 0.15,
"eps5YearGrowthRate": 0.12,
"epsDiluted": 6.15,
"evToEBITDA": 21.5,
"evToRevenue": 7.32,
"fiscalYearEnd": "September",
"forwardPE": 26.2,
"grossProfitTTM": 170782000000,
"high52WeekDate": "2025-11-15",
"highPrice": 176,
"industry": "Consumer Electronics",
"lastPrice": 175.43,
"latestQuarter": "2025-09-30",
"liabilities": 290437000000,
"longTermDebt": 106000000000,
"low52WeekDate": "2024-04-19",
"low52WeekPrice": 124.17,
"marketCapitalization": 2730000000000,
"midPrice": 175.43,
"movingAverage200Day": 165.5,
"movingAverage50Day": 170.25,
"name": "Apple Inc",
"officialSite": "https://www.apple.com",
"openPrice": 174.2,
"operatingMarginTTM": 0.305,
"pE": 28.5,
"pegRatio": 2.5,
"price": 175.43,
"priceToBookRatio": 43.75,
"priceToSalesRatioTTM": 7.15,
"profitMargin": 0.251,
"quarterlyEarningsGrowthYOY": 0.11,
"quarterlyRevenueGrowthYOY": 0.06,
"quoteTimestamp": "2025-11-24T15:30:00Z",
"returnOnAssetsTTM": 0.271,
"returnOnEquityTTM": 1.629,
"revenuePerShareTTM": 24.54,
"revenueTTM": 381623000000,
"sector": "Technology",
"sharesOutstanding": 15550061000,
"sicCode": "3571",
"spread": 0.02,
"symbol": "AAPL",
"tick": 1,
"tradeTimestamp": "2025-11-24T15:30:00Z",
"trailingPE": 28.5
}
],
"errors": [
{
"error": "Symbol not found",
"symbol": "INVALID"
}
]
}Retrieves comprehensive information for one or more equity symbols including real-time price data, fundamental metrics, company profile, and financial statistics. Provides enriched market data for informed trading decisions.
Use Case: Display detailed stock information pages with pricing, company fundamentals, and key financial metrics for research and analysis.
curl --request GET \
--url https://api.aries.com/v1/marketdata/equities/details \
--header 'Authorization: Bearer <token>'{
"data": [
{
"address": "One Apple Park Way, Cupertino, CA 95014",
"alphaVantageUpdatedAt": "2025-11-24T10:00:00Z",
"askExchange": "NASDAQ",
"askPrice": 175.44,
"assetType": "Common Stock",
"assets": 352755000000,
"beta": 1.24,
"bidExchange": "NASDAQ",
"bidPrice": 175.42,
"bidSize": 100,
"bookValue": 4.01,
"closePrice": 173.5,
"description": "Apple Inc. designs, manufactures, and markets smartphones...",
"dilutedEPSTTM": 6.15,
"dividendPerShare": 0.96,
"dividendYield": 0.0055,
"ebitda": 130541000000,
"eps": 6.15,
"eps3YearGrowthRate": 0.15,
"eps5YearGrowthRate": 0.12,
"epsDiluted": 6.15,
"evToEBITDA": 21.5,
"evToRevenue": 7.32,
"fiscalYearEnd": "September",
"forwardPE": 26.2,
"grossProfitTTM": 170782000000,
"high52WeekDate": "2025-11-15",
"highPrice": 176,
"industry": "Consumer Electronics",
"lastPrice": 175.43,
"latestQuarter": "2025-09-30",
"liabilities": 290437000000,
"longTermDebt": 106000000000,
"low52WeekDate": "2024-04-19",
"low52WeekPrice": 124.17,
"marketCapitalization": 2730000000000,
"midPrice": 175.43,
"movingAverage200Day": 165.5,
"movingAverage50Day": 170.25,
"name": "Apple Inc",
"officialSite": "https://www.apple.com",
"openPrice": 174.2,
"operatingMarginTTM": 0.305,
"pE": 28.5,
"pegRatio": 2.5,
"price": 175.43,
"priceToBookRatio": 43.75,
"priceToSalesRatioTTM": 7.15,
"profitMargin": 0.251,
"quarterlyEarningsGrowthYOY": 0.11,
"quarterlyRevenueGrowthYOY": 0.06,
"quoteTimestamp": "2025-11-24T15:30:00Z",
"returnOnAssetsTTM": 0.271,
"returnOnEquityTTM": 1.629,
"revenuePerShareTTM": 24.54,
"revenueTTM": 381623000000,
"sector": "Technology",
"sharesOutstanding": 15550061000,
"sicCode": "3571",
"spread": 0.02,
"symbol": "AAPL",
"tick": 1,
"tradeTimestamp": "2025-11-24T15:30:00Z",
"trailingPE": 28.5
}
],
"errors": [
{
"error": "Symbol not found",
"symbol": "INVALID"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Comma-separated list of equity symbols (e.g., AAPL,MSFT,GOOGL)
"AAPL,MSFT"
Was this page helpful?