Skip to main content
GET
/
v1
/
stock
/
transcripts
/
list
Transcripts List
curl --request GET \
  --url https://api.aries.com/v1/stock/transcripts/list \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "AAPL",
  "transcripts": [
    {
      "id": "AAPL_3453142",
      "quarter": 1,
      "time": "2026-01-29 22:01:04",
      "title": "AAPL - Earnings call Q1 2026",
      "year": 2026
    }
  ]
}

Query parameters

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

Response

Success returns 200 OK with a JSON object containing transcript list metadata (arrays of transcript entries with id, quarter, time, title, year). Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data 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

symbol
string
required

Stock ticker symbol

Response

Successful response

symbol
string

Stock ticker symbol

transcripts
object[]