get_earnings_call_summary
Returns the most recent earnings call summary for a ticker — management guidance text, overall call sentiment (positive / neutral / negative with a one-line rationale), and AI-extracted highlights and lowlights from the call as {title, content} bullets.
This is a structured summary derived from the call, not the raw
transcript text. Useful for "what did management say about X on the
last call", "was the most recent call bullish or bearish", or
"summarise the highlights from MSFT's latest earnings".
Only the most recent quarter is stored per ticker; for historical
EPS actual-vs-estimate series use get_earnings_history.
Args:
ticker: Stock ticker (e.g. 'AAPL', 'NVDA').
Returns:
{ ticker, fiscal_year, fiscal_quarter, guidance,
sentiment: { label, summary },
highlights: [ { title, content }, ... ],
lowlights: [ { title, content }, ... ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes |