Skip to main content
GET
/
v1
/
stock
/
transcripts
Get Transcript by ID
curl --request GET \
  --url https://api.aries.com/v1/stock/transcripts \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "AAPL",
  "transcript": [
    {
      "name": "Operator",
      "speech": [
        "Good day, everyone. Welcome to the Apple Incorporated First Quarter Fiscal Year 2020 Earnings Conference Call. Today's conference is being recorded.",
        "At this time for opening remarks and introductions, I would like to turn the call over to Tejas Gala, Senior Analyst, Corporate Finance and Investor Relations. Please go ahead."
      ],
      "session": "management_discussion"
    }
  ],
  "participant": [
    {
      "name": "Tejas Gala",
      "description": "Senior Analyst, Corporate Finance and IR",
      "role": "executive"
    }
  ],
  "audio": "https://api.tradearies.dev/v1/stock/media/presentation/api/redirect?urlType=transcripts-audio&id=AAPL_162777",
  "id": "AAPL_162777",
  "title": "AAPL - Earnings call Q1 2020",
  "time": "2020-01-29 02:36:41",
  "year": 2020,
  "quarter": 1
}

Query parameters

ParameterTypeRequiredDescription
idstringYesTranscript id (from transcripts list).

Response

Success returns 200 OK with a JSON object containing the transcript (title, participant, transcript segments with speech, audio URL). Errors: 400 when id is missing, 401 unauthorized, 404 when transcript not 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

id
string
required

Unique identifier for an earnings-call transcript. Obtain it from /v1/stock/transcripts/list for the symbol you want.

Response

Transcript content.

audio
string
id
string
participant
object[]
quarter
integer
symbol
string
time
string
title
string
transcript
object[]
year
integer