reported_financials
Get financial statements as reported by the company.
Examples
from openbb import obb
obb.equity.fundamental.reported_financials(symbol='AAPL', provider='intrinio')
# Get AAPL balance sheet with a limit of 10 items.
obb.equity.fundamental.reported_financials(symbol='AAPL', period='annual', statement_type='balance', limit=10, provider='intrinio')
# Get reported income statement
obb.equity.fundamental.reported_financials(symbol='AAPL', statement_type='income', provider='intrinio')
# Get reported cash flow statement
obb.equity.fundamental.reported_financials(symbol='AAPL', statement_type='cash', provider='intrinio')
Parameters
- standard
- intrinio
symbol: str
Symbol to get data for.
period: str
Default: annual
Time period of the data to return.
statement_type: str
Default: balance
The type of financial statement - i.e, balance, income, cash.
limit: int
Default: 100
The number of data entries to return. Although the response object contains multiple results, because of the variance in the fields, year-to-year and quarter-to-quarter, it is recommended to view results in small chunks.
symbol: str
Symbol to get data for.
period: Literal['annual', 'quarter']
Default: annual
None
statement_type: Literal['balance', 'income', 'cash']
Default: income
Cash flow statements are reported as YTD, Q4 is the same as FY.
limit: int
Default: 100
The number of data entries to return. Although the response object contains multiple results, because of the variance in the fields, year-to-year and quarter-to-quarter, it is recommended to view results in small chunks.
fiscal_year: int
The specific fiscal year. Reports do not go beyond 2008.
Returns
results: list[ReportedFinancials]
Serializable results.
provider: Optional[Literal['intrinio']]
Provider name.
warnings: Optional[list[Warning_]]
list of warnings.
chart: Optional[Chart]
Chart object.
extra: dict[str, Any]
Extra info.
Data
- standard
- intrinio
period_ending: date
The ending date of the reporting period.
fiscal_period: str
The fiscal period of the report (e.g. FY, Q1, etc.).
fiscal_year: int
The fiscal year of the fiscal period.
period_ending: date
The ending date of the reporting period.
fiscal_period: str
The fiscal period of the report (e.g. FY, Q1, etc.).
fiscal_year: int
The fiscal year of the fiscal period.