Skip to main content
GET
/
v1
/
stock
/
presentation
Get Company Presentation
curl --request GET \
  --url https://api.aries.com/v1/stock/presentation \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "AAPL",
  "res": [
    {
      "quarter": 1,
      "year": 2016,
      "url": "https://api.tradearies.dev/v1/stock/media/presentation/api/redirect?urlType=transcripts-slides2&id=c5aff8a57185771c8651a3e94520aad3190753a475e80e683ce0746d4ee48152",
      "title": "AAPL Q1 2016",
      "atTime": "2016-01-26 22:00:00"
    }
  ]
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. AAPL).

Response

Success returns 200 OK with a JSON object containing presentation/slides metadata (res array with atTime, quarter, title, url, year). Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data found, 500 server error.

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

symbol
string
required

Stock ticker to query. Send the plain uppercase symbol exactly as you'd type it on a brokerage screen, e.g. AAPL, MSFT.

Example:

"AAPL"

Response

Company presentation.

res
object[]
symbol
string