filing_details {edgarWebR} | R Documentation |
The SEC generates a html page as an index for every filing it receives containing all the meta-information about the filing. We extract 3 main types of information:
Filing date, accepted date, etc.
All the documents included in the filing
Companies included in the filing
Funds included in the filing
filing_details(x)
## S3 method for class 'character'
filing_details(x)
## S3 method for class 'xml_node'
filing_details(x)
x |
URL to a SEC filing index page |
For a company, there is typically a single filer and no funds, but many filings for funds get more complicated - e.g. 400+ funds with 100's of companies
NOTE: This can get process intensive for large fund pages. If you don't need all components, try just using filing_info
A list with the following components:
A data.frame as returned by filing_information
A data.frame as returned by filing_documents
A data.frame as returned by filing_filers
A data.frame as returned by filing_funds
# Typically you'd get the URL from one of the search functions
x <- paste0("https://www.sec.gov/Archives/edgar/data/",
"712515/000071251517000063/0000712515-17-000063-index.htm")
try(filing_details(x))