Get Latest Earnings Call Transcript
Retrieve the most recent earnings call transcript for any publicly traded company. This endpoint returns the full transcript text from the latest available quarter, including the call date, fiscal year, and quarter number.
Use this endpoint when you need the freshest earnings call data without knowing which quarter was reported last. The API automatically resolves the most recent transcript so you do not need to track reporting schedules yourself.
https://api.roic.ai/v2/company/earnings-calls/latest/{identifier}curl "https://api.roic.ai/v2/company/earnings-calls/latest/AAPL?apikey=YOUR_API_KEY"{
"symbol": "AAPL",
"year": 2024,
"quarter": 4,
"date": "2024-10-31",
"content": "Good afternoon. My name is Suhasini and I will be your conference operator today..."
}Parameters
Path parameters
identifierstringrequiredCompany identifier — supports ticker symbol (e.g., AAPL), CIK, CUSIP, or ISIN.
AAPLQuery parameters
formatstringResponse format. Use json for JSON (default) or excel for tab-separated values compatible with Google Sheets and Excel.
jsonValues: jsonexcelResponse
Response fields
symbolstringThe ticker symbol of the company that held the call, e.g. AAPL.
yearnumberFiscal year the call reports on, e.g. 2024. Fiscal years may not align with calendar years.
quarternumberFiscal quarter the call reports on, from 1 to 4.
datestringCalendar date the call took place, in YYYY-MM-DD format.
contentstringFull transcript of the call as plain text, covering operator remarks, prepared statements, and the Q&A session. Returned by the transcript endpoints only; the list endpoint omits it to keep responses small.
Use Cases
- Earnings alert systems. Fetch the latest transcript immediately after a company reports to trigger downstream analysis
- AI-powered earnings summaries. Feed the transcript into an LLM to generate executive summaries, extract key metrics, and identify sentiment shifts
- Portfolio monitoring dashboards. Display the most recent earnings call for each holding alongside financial data
- Real-time NLP pipelines. Automate sentiment analysis on the newest transcript as part of a quantitative research workflow
- Investor research tools. Let users quickly read the latest call for any ticker without navigating transcript archives
Related Endpoints
- List Earnings Calls - Get all available earnings call dates and quarters for a company
- Get Transcript by Quarter - Fetch a specific transcript by fiscal year and quarter
- Company Profile - Get company overview data including sector, industry, and description