Provides access to the SEC Current Events search tool from here

current_events(day, form)

Arguments

day

(0-5) Day to search for current forms. e.g. '2' returns forms from 2 business days ago.

form

Form to return filings (e.g. '10-K')

Value

A dataframe with one row per company with Includes the following columns -

  • cik

  • type

  • href

  • company_name

  • company_href

  • filing_date

Examples

# \donttest{ try(current_events(0, "10-K")[1:5,])
#> type #> 1 10-K #> 2 10-K #> 3 10-K #> 4 10-K/A #> 5 10-K #> href #> 1 https://www.sec.gov/Archives/edgar/data/1096950/0001721868-21-000228-index.html #> 2 https://www.sec.gov/Archives/edgar/data/1776048/0001099910-21-000051-index.html #> 3 https://www.sec.gov/Archives/edgar/data/1590383/0001104659-21-050976-index.html #> 4 https://www.sec.gov/Archives/edgar/data/1656501/0001493152-21-008957-index.html #> 5 https://www.sec.gov/Archives/edgar/data/1360442/0001096906-21-000807-index.html #> cik #> 1 1096950 #> 2 1776048 #> 3 1590383 #> 4 1656501 #> 5 1360442 #> company_href #> 1 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=1096950 #> 2 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=1776048 #> 3 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=1590383 #> 4 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=1656501 #> 5 https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=1360442 #> company_name filing_date #> 1 ADVANCED CONTAINER TECHNOLOGIES, INC. 2021-04-16 #> 2 Ameramex International Inc 2021-04-16 #> 3 BIOHITECH GLOBAL, INC. 2021-04-16 #> 4 BorrowMoney.com, Inc. 2021-04-16 #> 5 Cannabis Sativa, Inc. 2021-04-16
# }