Financial Data API

Get Earnings Call Transcript

Fetch a specific earnings call transcript by fiscal year and quarter. This endpoint returns the full transcript text for the requested period, including both prepared remarks from management and the analyst Q&A session.

Use this endpoint when you know exactly which quarter you need. Pass the year and quarter parameters to retrieve a precise transcript. To discover which quarters are available, use the List Earnings Calls endpoint first.

GEThttps://api.roic.ai/v2/company/earnings-calls/transcript/{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.

yearnumberrequired

Fiscal year of the earnings call.

Example: 2024
quarternumberrequired

Fiscal quarter (1-4).

Example: 4Values: 1, 2, 3, 4
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/transcript/AAPL?apikey=YOUR_API_KEY&year=2024&quarter=4"

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

  • Quarter-over-quarter analysis. Fetch transcripts for consecutive quarters to track how management commentary on key topics evolves
  • Earnings event studies. Retrieve the transcript for a specific quarter alongside stock price data to analyze market reaction to management remarks
  • Targeted NLP extraction. Pull a single transcript to extract specific data points like revenue guidance, margin outlook, or capex plans
  • Comparative research. Fetch the same quarter across multiple companies to compare how peers discuss shared industry trends
  • Historical deep dives. Access any past earnings call by year and quarter for forensic analysis or academic research