Fetches basic information on a given company from the SEC site

company_information(x)

Arguments

x

Either a stock symbol (for the 10,000 largest companies) or CIK code

Value

a dataframe with all SEC company information

Examples

# \donttest{ try(company_information("INTC"))
#> name cik fiscal_year_end #> 1 INTEL CORP 0000050863 1228 #> company_href #> 1 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000050863&owner=exclude&count=40 #> sic sic_description state_location state_incorporation #> 1 3674 SEMICONDUCTORS & RELATED DEVICES CA DE #> mailing_city mailing_state mailing_zip mailing_street #> 1 SANTA CLARA CA 95054 2200 MISSION COLLEGE BLVD #> mailing_street2 business_city business_state business_zip #> 1 RNB-4-151 SANTA CLARA CA 95054 #> business_street business_street2 business_phone #> 1 2200 MISSION COLLEGE BLVD RNB-4-151 4087658080
# }