get_financials
Financial statements time series for a ticker, chart-ready. Each period is a flat ~25-field object spanning the income statement (revenue, gross / operating / EBITDA / net margins, EPS, R&D), the balance sheet (total assets, total debt, total equity, net debt, cash + short-term investments), the cash flow statement (operating cash flow, free cash flow, capex, dividends paid, buybacks), and two computed ratios (current ratio, debt-to-equity).
Margins are emitted as percentages — gross_margin_pct of 49.27
means 49.27%. Cash outflows (dividends_paid, buybacks) are
returned as negative numbers, matching the source convention.
Use for: "AAPL revenue and FCF over the last 10 years", "show
margins trend", "is net debt rising", "EPS growth", "R&D as %
of revenue".
Args:
ticker: Stock ticker (e.g. 'AAPL', 'NVDA').
period: 'annual' (default), 'quarterly', or 'ttm' (trailing
twelve months). Annual periods extend ~9 years back;
quarterly extends ~37 quarters back.
count: Number of most-recent periods to return (default 5,
max 40), ordered oldest-first inside the returned
`periods` array.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| period | No | 'annual' (default), 'quarterly', or 'ttm' | annual |
| ticker | Yes |