company_details {edgarWebR} | R Documentation |
SEC Company Details
Description
For a given company, either by ticker, CIK, or pre-fetched page, we extract 2 sets of information:
- Company Information
Filing date, accepted date, etc.
- Filings
Companies included in the filing
Usage
company_details(
x,
ownership = FALSE,
type = "",
before = "",
count = 40,
page = 1
)
Arguments
x |
either a stock ticker, CIK number, or XML document for a company page |
ownership |
boolean for inclusion of company change filings |
type |
Type of filing to fetch. NOTE: due to the way the SEC EDGAR system works, it is actually is a 'starts-with' search, so for instance specifying 'type = "10-K" will return "10-K/A" and "10-K405" filings as well. To ensure you only get the type you want, best practice would be to filter the results. |
before |
yyyymmdd format of latest filing to fetch |
count |
Number of filings to fetch per page. Valid options are 10, 20, 40, 80, or 100. Other values will result in the closest count. |
page |
Which page of results to return. |
Value
A list with the following components
- information
data.frame as returned by
company_information
- filings
data.frame as returned by
company_filings
Examples
try(company_details("AAPL", before = "20170810"))