cong_daily_record {congress} | R Documentation |
Request daily Congressional Record Information
Description
Request daily Congressional Record Information
Usage
cong_daily_record(
volume = NULL,
issue = NULL,
item = NULL,
limit = 20,
offset = 0,
format = "json",
clean = TRUE
)
Arguments
volume |
Volume of the daily Congressional record. Character (or numeric). |
issue |
Issue of the daily Congressional record. Character (or numeric). |
item |
Information to request. Can be |
limit |
number of records to return. Default is 20. Will be truncated to between 1 and 250. |
offset |
number of records to skip. Default is 0. Must be non-negative. |
format |
Output format for |
clean |
Default is TRUE. Should output be returned as a |
Value
tibble
or HTTP response if clean = FALSE
Examples
# Requires API Key
cong_daily_record()
cong_daily_record(volume = 166)
cong_daily_record(volume = 168, issue = 153)
cong_daily_record(volume = 167, issue = 21, item = 'articles')
[Package congress version 0.0.3 Index]