Skip to contents

Posts a JSON-body search request to the NamUs MissingPersons endpoint (/api/CaseSets/NamUs/MissingPersons/Search) and pages through the results. Returns morie's documented schema - case_number, state, county, dlc_date (date last contact), sex, race, age_min, age_max, height_cm_min, height_cm_max, weight_kg_min, weight_kg_max, first_name, last_name, city, circumstances.

Usage

morie_ingest_forensics_namus_missing(
  state = NULL,
  max_features = NULL,
  page_size = 200L,
  user_agent = .MORIE_FORENSICS_DEFAULT_UA,
  timeout = .MORIE_FORENSICS_DEFAULT_TIMEOUT
)

Arguments

state

Two-letter US state code; NULL returns the national feed.

max_features

Optional hard cap on returned rows.

page_size

Records per request (default 200).

user_agent, timeout

Standard request knobs.

Value

A base R data.frame.

Examples

if (FALSE) { # \dontrun{
df <- morie_ingest_forensics_namus_missing(state = "CA",
                                           max_features = 1000L)
head(df)
} # }