SEC Filing Included Filers

filing_filers(x)

# S3 method for character
filing_filers(x)

# S3 method for xml_node
filing_filers(x)

Arguments

x

URL to a SEC filing index page

Value

A dataframe with all the filers in the filing along with their info

Examples

# \donttest{ # 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_filers(x))
#> mailing_address_1 mailing_address_2 mailing_address_3 #> 1 209 REDWOOD SHORES PARKWAY REDWOOD CITY CA 94065 <NA> #> mailing_address_4 business_address_1 business_address_2 #> 1 <NA> 209 REDWOOD SHORES PARKWAY REDWOOD CITY CA 94065 #> business_address_3 business_address_4 company_name company_cik #> 1 650-628-1500 <NA> ELECTRONIC ARTS INC. 0000712515 #> company_filings_href #> 1 https://www.sec.gov/cgi-bin/browse-edgar?CIK=0000712515&action=getcompany #> company_irs_number company_incorporation_state company_fiscal_year_end #> 1 942838567 DE 0331 #> filing_type filing_act #> 1 10-Q 34 #> file_number_href #> 1 https://www.sec.gov/cgi-bin/browse-edgar?filenum=000-17948&action=getcompany #> file_number film_number sic_code #> 1 000-17948 171015593 7372 #> sic_href #> 1 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&SIC=7372&owner=include
# }