Returns the income statement (profit & loss) for the given date range. Defaults to the current quarter.
The full statement is always returned. You cannot filter to a single category. Revenue minus expenses equals net income; returning a slice would break that math.
Returns one period per request. For monthly breakdowns, make separate calls for each month.
Sign convention: income/revenue amounts are positive, expense amounts are negative. Summing all section totals gives net income.
API key prefixed with finta_
Start of the reporting period (YYYY-MM-DD). Defaults to beginning of current quarter.
End of the reporting period (YYYY-MM-DD). Defaults to today.
The income statement
income_statement "2026-01-01"
"2026-03-31"
"USD"
Operating income in cents. Equals revenue.total_cents + uncategorized_income.total_cents + expenses.total_cents + uncategorized_expenses.total_cents (expenses are already negative). Can be negative if the company is unprofitable.
3300000
Non-operating income and expenses (e.g. interest income, gains/losses).
Net income in cents for the period. Equals operating_income_cents + non_operating_income.total_cents + taxes.total_cents (taxes are already negative). Can be negative if the company is unprofitable.
3325000
Uncategorized income items. Present when uncategorized income exists.
Uncategorized expense items. Present when uncategorized expenses exist.
Tax expense. Present when tax data exists.