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.
GET
https://api.roic.ai/v2/company/earnings-calls/transcript/{identifier}Parameters
Path Parameters
identifierstringrequiredCompany identifier — supports ticker symbol (e.g., `AAPL`), CIK, CUSIP, or ISIN.
Example:
AAPLQuery Parameters
apikeystringrequiredYour API key for authentication.
yearnumberrequiredFiscal year of the earnings call.
Example:
2024quarternumberrequiredFiscal quarter (1-4).
Example:
4Values: 1, 2, 3, 4formatstringoptionalResponse format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.
Default:
jsonValues: json, excelCode 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
Related Endpoints
- Get Latest Transcript - Get the most recent earnings call without specifying year and quarter
- List Earnings Calls - Discover all available quarters before fetching specific transcripts
- Income Statement - Get the financial results discussed in the earnings call