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

Query parameters

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

Response

Success returns 200 OK with a JSON object containing symbol and a transcripts array. Each transcript entry includes id, quarter, time, title, and 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

List of transcripts.

symbol
string
transcripts
object[]