Financial Data API

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}

Parameters

Path Parameters

identifierstringrequired

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

Example: AAPL

Query Parameters

apikeystringrequired

Your API key for authentication.

formatstringoptional

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

Default: jsonValues: json, excel

Code Examples

curl "https://api.roic.ai/v2/company/earnings-calls/latest/AAPL?apikey=YOUR_API_KEY"

Response

Response200 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..."
}

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 earnings calendars