Learn R Programming

edgarWebR (version 1.1.0)

full_text: 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

Run this code
# NOT RUN {
try(full_text('intel'))
# }

Run the code above in your browser using DataLab