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",
  "asOf": "2026-01-15T12:00:00Z",
  "source": "demo",
  "records": [
    {
      "id": "rec-001",
      "title": "Sample supplemental record",
      "category": "illustrative",
      "score": 0.82,
      "url": "https://example.com/reference/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

Transcript ID. Required.

Response

Transcript content.

The response is of type object.