full_text {edgarWebR} | R Documentation |
SEC Full-Text Search
Description
Provides access to the SEC fillings full-text search tool.
Usage
full_text(
q = "*",
type = "",
reverse_order = FALSE,
count = 100,
page = 1,
stemming = TRUE,
name = "",
cik = "",
sic = "",
from = "",
to = "",
location = "",
incorporated_location = FALSE
)
Arguments
q |
Search query. For details on special formatting, see the FAQ. |
type |
Type of forms to search - e.g. '10-K'. Can also be a list of types - e.g. c("10-K", "10-Q") |
reverse_order |
[DEP] If true, order by oldest first instead of newest first |
count |
[DEP] Number of results to return - will always try to return 100 |
page |
Which page of results to return |
stemming |
[DEP] Search by base words(default) or exactly as entered |
name |
Company name OR individual's name. Cannot be combined with 'cik' or 'sik'. |
cik |
Company code to search. Cannot be combined with 'name' or 'sic' |
sic |
[DEP] Standard Industrial Classification of filer to search for. Cannot be combined with 'cik' or 'name'. Special options - 1: all, 0: Unspecified. |
from |
Start date. Must be in the form of 'mm/dd/yyyy'. Must also specify 'to' |
to |
End date. Must be in the form of 'mm/dd/yyyy'. Must also specify 'from' |
location |
Filter based on company's location |
incorporated_location |
boolean to use location of incorporation rather than location of HQ |
Value
A dataframe list of results including the following columns -
filing_date
name
href
company_name
cik
sic
content
parent_href
index_href
Examples
try(full_text('intel'))