latest_financial_reports
Get the newest quarterly, annual, and current reports for all companies.
Examples
from openbb import obb
obb.equity.discovery.latest_financial_reports(provider='sec')
obb.equity.discovery.latest_financial_reports(provider='sec', date=2024-09-30)
Parameters
- standard
- sec
Name | Type | Description | Default | Optional |
---|---|---|---|---|
; |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
date | Union[date, str] | A specific date to get data for. Defaults to today. | None | True |
report_type | Union[str, List[str]] | Return only a specific form type. Default is all quarterly, annual, and current reports. Choices: 1-K, 1-SA, 1-U, 10-D, 10-K, 10-KT, 10-Q, 10-QT, 20-F, 40-F, 6-K, 8-K. Multiple items allowed for provider(s): sec. | None | True |
Returns
OBBject
results : List[LatestFinancialReports]
Serializable results.
provider : Optional[Literal['sec']]
Provider name.
warnings : Optional[List[Warning_]]
List of warnings.
chart : Optional[Chart]
Chart object.
extra : Dict[str, Any]
Extra info.
Data
- standard
- sec
Name | Type | Description |
---|---|---|
filing_date | date | The date of the filing. |
period_ending | date | Report for the period ending. |
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the company. |
cik | str | Central Index Key (CIK) for the requested entity. |
sic | str | Standard Industrial Classification code. |
report_type | str | Type of filing. |
description | str | Description of the report. |
url | str | URL to the filing page. |
Name | Type | Description |
---|---|---|
filing_date | date | The date of the filing. |
period_ending | date | Report for the period ending. |
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the company. |
cik | str | Central Index Key (CIK) for the requested entity. |
sic | str | Standard Industrial Classification code. |
report_type | str | Type of filing. |
description | str | Description of the report. |
url | str | URL to the filing page. |
items | str | Item codes associated with the filing. |
index_headers | str | URL to the index headers file. |
complete_submission | str | URL to the complete submission text file. |
metadata | str | URL to the MetaLinks.json file, if available. |
financial_report | str | URL to the Financial_Report.xlsx file, if available. |