Description Usage Arguments Value Examples
View source: R/company_details.R
For a given company, either by ticker, CIK, or pre-fetched page, we extract 2 sets of information:
Filing date, accepted date, etc.
Companies included in the filing
1 2 3 4 5 6 7 8  | company_details(
  x,
  ownership = FALSE,
  type = "",
  before = "",
  count = 40,
  page = 1
)
 | 
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.  | 
A list with the following components
data.frame as returned by company_information
data.frame as returned by company_filings
1  | try(company_details("AAPL", before = "20170810"))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.