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
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | False | |
period | str | Time period of the data to return. | annual | True |
statement_type | str | The type of financial statement - i.e, balance, income, cash. | balance | True |
limit | int | 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. | 100 | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | False | |
period | Literal['annual', 'quarter'] | None | annual | True |
statement_type | Literal['balance', 'income', 'cash'] | Cash flow statements are reported as YTD, Q4 is the same as FY. | income | True |
limit | int | 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. | 100 | True |
fiscal_year | int | The specific fiscal year. Reports do not go beyond 2008. | None | True |
Returns
OBBject
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
Name | Type | Description |
---|---|---|
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. |
Name | Type | Description |
---|---|---|
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. |