Searches ACRIS for specific documents based on input parameters

acris_boroughs_docs(boroughs = c("Manhattan"), documents = c("DEED"),
  date_from = "2018-12-01", date_to = Sys.Date(),
  resolve_parties = T, rows_max = 999999999,
  parse_all_documents = FALSE, nest_data = TRUE,
  widen_party_data = F, return_message = TRUE)

Arguments

boroughs

character vector of boroughs whose options include

  • Manhattan

  • Brooklyn

  • Bronx

  • Queens

  • Staten Island

documents

vector of document types

date_from

if not NULL, date records start

date_to

if not NULLm date records end

resolve_parties

if TRUE parse party names

rows_max

if not NULL

parse_all_documents

if TRUE parses detailed document data

nest_data

if TRUE returns a nested data frame

widen_party_data

if TRUE widens party data

return_message

if TRUE returns a message

Value

a tibble

See also

Examples

# NOT RUN {
## Get all deeds and mortgages in Brooklyn and Manhattan from October 2017 to today
acris_boroughs_docs(boroughs = c("Manhattan", "Brooklyn"), documents = c("DEED", "Agreement"), date_from = "2018-03-01", resolve_parties = F, date_to = Sys.Date(), rows_max = 999999999, parse_all_documents = FALSE, nest_data = TRUE, return_message = TRUE)
# }