This function returns data on SEC registered municipal advisors from March 2015 onwards.

sec_municipal_advisors(
  only_most_recent = TRUE,
  years = NULL,
  months = NULL,
  nest_data = FALSE,
  return_message = TRUE
)

Arguments

only_most_recent

TRUE search only the most recent period

years

years to include starting in 2015

months

months to include

nest_data

TRUE return nested data frame

return_message

TRUE return a message after data import

Value

nested tibble or tibble if nest_data = FALSE

References

The Securities and Exchange Commission

See also

Examples

if (FALSE) {
sec_municipal_advisors(only_most_recent = TRUE, nest_data = FALSE)
sec_municipal_advisors(only_most_recent = FALSE, years = 2015:2017, nest_data = TRUE)
}