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.

GEThttps://api.roic.ai/v2/company/earnings-calls/latest/{identifier}
Request
curl "https://api.roic.ai/v2/company/earnings-calls/latest/AAPL?apikey=YOUR_API_KEY"
Response
200 OK
{
  "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

identifierstringrequired

Company identifier — supports ticker symbol (e.g., AAPL), CIK, CUSIP, or ISIN.

Example: AAPL

Query parameters

formatstring

Response format. Use json for JSON (default) or excel for tab-separated values compatible with Google Sheets and Excel.

Default: jsonValues: jsonexcel

Response

Response fields

symbolstring

The ticker symbol of the company that held the call, e.g. AAPL.

yearnumber

Fiscal year the call reports on, e.g. 2024. Fiscal years may not align with calendar years.

quarternumber

Fiscal quarter the call reports on, from 1 to 4.

datestring

Calendar date the call took place, in YYYY-MM-DD format.

contentstring

Full 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