Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Comma-separated list of stock symbols (max 50)
Example:
"AAPL,GOOGL,MSFT"
curl --request GET \
--url https://api.tradearies.dev/v1/marketdata/equities/details \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'{
"data": [
{
"symbol": "<string>",
"price": 123,
"lastPrice": 123,
"openPrice": 123,
"closePrice": 123,
"highPrice": 123,
"bidPrice": 123,
"bidSize": 123,
"bidExchange": "<string>",
"askPrice": 123,
"askExchange": "<string>",
"midPrice": 123,
"spread": 123,
"tick": 123,
"tradeTimestamp": "<string>",
"quoteTimestamp": "<string>",
"sicCode": "<string>",
"low52WeekPrice": 123,
"low52WeekDate": "<string>",
"high52WeekDate": "<string>",
"pE": 123,
"sharesOutstanding": 123,
"epsDiluted": 123,
"eps3YearGrowthRate": 123,
"eps5YearGrowthRate": 123,
"assets": 123,
"liabilities": 123,
"longTermDebt": 123,
"assetType": "<string>",
"name": "<string>",
"description": "<string>",
"sector": "<string>",
"industry": "<string>",
"address": "<string>",
"officialSite": "<string>",
"fiscalYearEnd": "<string>",
"latestQuarter": "<string>",
"ebitda": 123,
"bookValue": 123,
"pegRatio": 123,
"dividendPerShare": 123,
"dividendYield": 123,
"eps": 123,
"revenuePerShareTTM": 123,
"profitMargin": 123,
"marketCapitalization": 123,
"operatingMarginTTM": 123,
"returnOnAssetsTTM": 123,
"returnOnEquityTTM": 123,
"revenueTTM": 123,
"grossProfitTTM": 123,
"dilutedEPSTTM": 123,
"quarterlyEarningsGrowthYOY": 123,
"quarterlyRevenueGrowthYOY": 123,
"trailingPE": 123,
"forwardPE": 123,
"priceToSalesRatioTTM": 123,
"priceToBookRatio": 123,
"evToRevenue": 123,
"evToEBITDA": 123,
"beta": 123,
"movingAverage50Day": 123,
"movingAverage200Day": 123,
"alphaVantageUpdatedAt": "<string>"
}
],
"errors": [
{
"symbol": "<string>",
"error": "<string>"
}
]
}Retrieve detailed information for one or more equity symbols
curl --request GET \
--url https://api.tradearies.dev/v1/marketdata/equities/details \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'{
"data": [
{
"symbol": "<string>",
"price": 123,
"lastPrice": 123,
"openPrice": 123,
"closePrice": 123,
"highPrice": 123,
"bidPrice": 123,
"bidSize": 123,
"bidExchange": "<string>",
"askPrice": 123,
"askExchange": "<string>",
"midPrice": 123,
"spread": 123,
"tick": 123,
"tradeTimestamp": "<string>",
"quoteTimestamp": "<string>",
"sicCode": "<string>",
"low52WeekPrice": 123,
"low52WeekDate": "<string>",
"high52WeekDate": "<string>",
"pE": 123,
"sharesOutstanding": 123,
"epsDiluted": 123,
"eps3YearGrowthRate": 123,
"eps5YearGrowthRate": 123,
"assets": 123,
"liabilities": 123,
"longTermDebt": 123,
"assetType": "<string>",
"name": "<string>",
"description": "<string>",
"sector": "<string>",
"industry": "<string>",
"address": "<string>",
"officialSite": "<string>",
"fiscalYearEnd": "<string>",
"latestQuarter": "<string>",
"ebitda": 123,
"bookValue": 123,
"pegRatio": 123,
"dividendPerShare": 123,
"dividendYield": 123,
"eps": 123,
"revenuePerShareTTM": 123,
"profitMargin": 123,
"marketCapitalization": 123,
"operatingMarginTTM": 123,
"returnOnAssetsTTM": 123,
"returnOnEquityTTM": 123,
"revenueTTM": 123,
"grossProfitTTM": 123,
"dilutedEPSTTM": 123,
"quarterlyEarningsGrowthYOY": 123,
"quarterlyRevenueGrowthYOY": 123,
"trailingPE": 123,
"forwardPE": 123,
"priceToSalesRatioTTM": 123,
"priceToBookRatio": 123,
"evToRevenue": 123,
"evToEBITDA": 123,
"beta": 123,
"movingAverage50Day": 123,
"movingAverage200Day": 123,
"alphaVantageUpdatedAt": "<string>"
}
],
"errors": [
{
"symbol": "<string>",
"error": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Comma-separated list of stock symbols (max 50)
"AAPL,GOOGL,MSFT"
Was this page helpful?