congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where is_current = 1 and state = "UT" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, nickname, first_served, last_served, thomas_id, ballotpedia_id, gender, terms_count, trade_count, vote_count, first_served (date), last_served (date), birthday (date), fec_ids (array)
| bioguide_id | first_name | last_name | full_name ▼ | nickname | party | state | chamber | district | first_served | last_served | is_current | opensecrets_id | fec_ids | govtrack_id | thomas_id | votesmart_id | lis_id | wikipedia_id | ballotpedia_id | birthday | gender | terms_count | served_until | trade_count | speech_count | bills_sponsored | vote_count | fec_total_received |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| M001213 | Blake | Moore | Blake D. Moore | Republican | UT | House | 1 | 2021-01-03 | 2027-01-03 | 1 | N00046598 | ["H0UT01205"] | 456851 | Blake Moore | 1980-06-22 | M | 4 | 152 | 132 | 82 | 2135 | 3435182 | ||||||
| O000086 | Clarence | Owens | Burgess Owens | Burgess | Republican | UT | House | 4 | 2021-01-03 | 2027-01-03 | 1 | N00045812 | ["H0UT04076"] | 456852 | 191166 | Burgess Owens | Burgess Owens | 1951-08-02 | M | 4 | 0 | 101 | 53 | 2135 | 9536742 | |||
| M001228 | Celeste | Maloy | Celeste Maloy | Republican | UT | House | 2 | 2023-11-21 | 2027-01-03 | 1 | N00052817 | ["H4UT02296"] | 456956 | 212289 | Celeste Maloy | Celeste Maloy | 1981-05-22 | F | 3 | 0 | 21 | 36 | 1010 | 1366834 | ||||
| C001114 | John | Curtis | John R. Curtis | Republican | UT | Senate | 2017-11-13 | 2031-01-03 | 1 | N00041221 | ["H8UT03238", "S4UT00282"] | 412740 | 123390 | S431 | John Curtis (Utah politician) | John Curtis (Utah) | 1960-05-10 | M | 3 | 338 | 137 | 173 | 3934 | 13164975 | ||||
| K000403 | Mike | Kennedy | Mike Kennedy | Republican | UT | House | 3 | 2025-01-03 | 2027-01-03 | 1 | N00043086 | ["H4UT03260"] | 457025 | Mike Kennedy (politician) | 1969-02-02 | M | 2 | 1 | 36 | 29 | 445 | 600345 | ||||||
| L000577 | Mike | Lee | Mike Lee | Republican | UT | Senate | 2011-01-05 | 2029-01-03 | 1 | N00031696 | ["S0UT00165"] | 412495 | 02080 | 66395 | S346 | Mike Lee | Mike Lee | 1971-06-04 | M | 4 | 0 | 2279 | 578 | 5309 | 15287291 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE congress_members (
bioguide_id TEXT PRIMARY KEY,
first_name TEXT,
last_name TEXT,
full_name TEXT,
nickname TEXT,
party TEXT,
state TEXT,
chamber TEXT,
district INTEGER,
first_served TEXT,
last_served TEXT,
is_current INTEGER,
opensecrets_id TEXT,
fec_ids TEXT,
govtrack_id INTEGER,
thomas_id TEXT,
votesmart_id INTEGER,
lis_id TEXT,
wikipedia_id TEXT,
ballotpedia_id TEXT,
birthday TEXT,
gender TEXT,
terms_count INTEGER,
served_until TEXT
, trade_count INTEGER DEFAULT 0, speech_count INTEGER DEFAULT 0, bills_sponsored INTEGER DEFAULT 0, vote_count INTEGER DEFAULT 0, fec_total_received INTEGER DEFAULT 0);
CREATE INDEX idx_cm_name ON congress_members(last_name, first_name);
CREATE INDEX idx_cm_party ON congress_members(party);
CREATE INDEX idx_cm_state ON congress_members(state);
CREATE INDEX idx_cm_chamber ON congress_members(chamber);
CREATE INDEX idx_cm_current ON congress_members(is_current);
CREATE INDEX idx_cm_current_trades ON congress_members(is_current DESC, trade_count DESC);