Get Earnings Transcript Data
Stock
Get Earnings Transcript Data
OpenAPI JSON Spec Retrieve earnings call transcript data for a specific stock symbol, fiscal year, and period type.
Overview This endpoint provides the full transcript of earnings conference calls, including management discussions and Q&A sessions with analysts.
Request Parameters
symbol(required): Stock symbol (e.g., “AAPL”, “MSFT”)period_type(required): Period type, must be one of: “annual” or “quarterly”fiscal_year(required): Issuer-reported fiscal year (minimum: 2005, e.g., 2024). This is the fiscal year as the company reports it (matching FMP and the company’s IR), e.g. Nike’s fiscal year ends in May, so its earnings call held in March 2026 is FY2026 Q3.fiscal_quarter(optional): Fiscal quarter, required when period_type is “quarterly”. Valid values: “Q1”, “Q2”, “Q3”, “Q4”
Validation Rules
- When
period_typeis “quarterly”,fiscal_quarteris required - When
period_typeis “annual”,fiscal_quarteris optional
Response Data Structure
data([]EarningsTranscriptData): Array of earnings transcript data
EarningsTranscriptData fields:
symbol(string): Stock symbol (e.g., “AAPL”, “MSFT”)quarter(string): Fiscal period identifier (e.g., “2024Q1” for quarterly, “2024” for annual)published_at(string): Transcript publication moment as an RFC3339 UTC timestamp (e.g. “2024-10-31T20:54:36Z”); includes time-of-day. Empty string if unknowndate(string): Earnings-call date in YYYY-MM-DD format (UTC). Empty string if unknowntranscript([]SectionEntry): Array of transcript sections, each containing:section(string): Section name (e.g., “MANAGEMENT DISCUSSION SECTION”)content([]TranscriptEntry): Array of transcript entries, each containing:speaker(string): Speaker name (e.g., “Arvind Krishna”)title(string): Speaker title/role (e.g., “CEO”, “Analyst”)content(string): Transcript content/speech text
GET
Get Earnings Transcript Data
Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Stock symbol (e.g., AAPL, MSFT)
Period type (annual or quarterly)
Available options:
annual, quarterly Issuer-reported fiscal year (min 2005, e.g. 2024; e.g. Nike Mar-2026 call = FY2026 Q3)
Fiscal quarter (Q1, Q2, Q3, Q4) - required when period_type is quarterly
Available options:
Q1, Q2, Q3, Q4 
