Skip to main content
GET
/
v1
/
stock
/
transcripts
Transcript by ID
curl --request GET \
  --url https://api.aries.com/v1/stock/transcripts \
  --header 'Authorization: Bearer <token>'
{
  "audio": "https://api.tradearies.dev/v1/stock/media/presentation/api/redirect?urlType=transcripts-audio&id=AAPL_162777",
  "id": "AAPL_162777",
  "participant": [
    {
      "description": "Senior Analyst, Corporate Finance and IR",
      "name": "Tejas Gala",
      "role": "executive"
    }
  ],
  "quarter": 1,
  "symbol": "AAPL",
  "time": "2020-01-29 02:36:41",
  "title": "AAPL - Earnings call Q1 2020",
  "transcript": [
    {
      "name": "Operator",
      "session": "management_discussion",
      "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."
      ]
    }
  ],
  "year": 2020
}

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

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

Query Parameters

id
string
required

Transcript id

Response

Successful response

audio
string

URL to transcript audio

id
string

Transcript identifier

participant
object[]
quarter
integer
symbol
string
time
string

Call date and time

title
string
transcript
object[]
year
integer