API Documentation

⌘K
GET/api/1/earning-calls/transcript/{id}

Get earning call transcript by ID

Returns the full content of a specific earning call transcript by its ID.

Parameters

1
idintegerrequired
path

Unique identifier for the transcript

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/earning-calls/transcript/3001' \
  -H 'Accept: application/json'
200 Response
{
  "id": 3001,
  "ticker": "AAPL",
  "datePublished": 1704067200000,
  "title": "Apple Inc. (AAPL) Q1 2024 Earnings Call Transcript",
  "type": "earnings_call",
  "presentationUrl": "https://media.eulerpool.com/presentation/3001.pdf",
  "transcriptAudioUrl": "https://media.eulerpool.com/audio/3001.mp3",
  "presentationAvailable": true,
  "transcriptAudioAvailable": true,
  "presentationType": "pdf",
  "transcriptAudioType": "mp3",
  "parsedContent": {
    "companyParticipants": [
      "onathan Neilson - VP, IR",
      "Satya Nadella - Chairman and CEO"
    ],
    "otherParticipants": [
      "Keith Weiss - Morgan Stanley",
      "Brent Thill - Jefferies"
    ],
    "entries": {
      "seq": 1,
      "speaker": "Operator",
      "content": "Greetings, and welcome to the Microsoft Fiscal Year 2025 Third Quarter Earnings Conference Call. At this time, all participants are in a listen-only mode. A question-and-answer session will follow the formal presentation."
    }
  }
}