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}
Request
curl "https://api.roic.ai/v2/company/earnings-calls/transcript/AAPL?apikey=YOUR_API_KEY&year=2024&quarter=4"
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

yearnumberrequired

Fiscal year of the earnings call.

Example: 2024
quarternumberrequired

Fiscal quarter (1-4).

Example: 4Values: 1234
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

  • 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