Lists of Committees

ppc_committees(
  congress = "116",
  chamber = c("joint", "house", "senate"),
  api_key = NULL,
  raw = FALSE
)

Arguments

congress

The number of Congress of interest

chamber

Specify the chamber of Congress typically "house" or "senate"; sometimes "both" or "joint"

api_key

The actual API key string provided by ProPublica.

raw

Logical indicating whether to return the raw response object. The default (FALSE) parses the content and returns a tibble data frame.

Value

A data frame of congressional committees information

Examples

if (FALSE) { ## get committes info for house members in 115th congress h115com <- ppc_committees("115", "house") }