congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where chamber = "Senate", party = "Republican" and state = "MS" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_served, last_served, opensecrets_id, fec_ids, thomas_id, ballotpedia_id, gender, terms_count, served_until, trade_count, speech_count, bills_sponsored, vote_count, fec_total_received, first_served (date), last_served (date), birthday (date), served_until (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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A000172 | Adelbert | Ames | Adelbert Ames | Republican | MS | Senate | 1870-01-01 | 1875-03-03 | 0 | [] | 400827 | Adelbert Ames | 1835-10-31 | M | 1 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| B000968 | Blanche | Bruce | Blanche Bruce | Republican | MS | Senate | 1875-12-06 | 1881-03-03 | 0 | [] | 401920 | Blanche Bruce | 1841-03-01 | M | 2 | 1881-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| H001079 | Cindy | Hyde-Smith | Cindy Hyde-Smith | Republican | MS | Senate | 2018-04-09 | 2027-01-03 | 1 | N00043298 | ["S8MS00261"] | 412743 | 20784 | S395 | Cindy Hyde-Smith | Cindy Hyde-Smith | 1959-05-10 | F | 2 | 0 | 220 | 101 | 3276 | 8616793 | ||||
| H000735 | David | Holmes | David Holmes | Republican | MS | Senate | 1797-05-15 | 1825-09-25 | 0 | [] | 405586 | David Holmes (politician) | 1769-03-10 | M | 5 | 1825-09-25 | 0 | 0 | 0 | 0 | 0 | |||||||
| P000172 | Henry | Pease | Henry Pease | Republican | MS | Senate | 1874-01-01 | 1875-03-03 | 0 | [] | 408576 | Henry R. Pease | 1835-02-19 | M | 1 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| R000166 | Hiram | Revels | Hiram Revels | Republican | MS | Senate | 1870-01-01 | 1871-03-03 | 0 | [] | 409143 | Hiram R. Revels | 1827-09-27 | M | 1 | 1871-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| A000079 | James | Alcorn | James Alcorn | Republican | MS | Senate | 1871-03-04 | 1877-03-03 | 0 | [] | 400738 | James L. Alcorn | 1816-11-04 | M | 2 | 1877-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| W000437 | Roger | Wicker | Roger F. Wicker | Republican | MS | Senate | 1995-01-04 | 2031-01-03 | 1 | N00003280 | ["H4MS01078", "S8MS00196"] | 400432 | 01226 | 21926 | S318 | Roger Wicker | Roger Wicker | 1951-07-05 | M | 7 | 10 | 1181 | 415 | 9759 | 8697001 | |||
| C000567 | Thad | Cochran | Thad Cochran | Republican | MS | Senate | 1973-01-03 | 2018-04-01 | 0 | N00003328 | ["S8MS00055"] | 300023 | 00213 | 53312 | S136 | Thad Cochran | Thad Cochran | 1937-12-07 | M | 8 | 2018-04-01 | 0 | 1472 | 443 | 6011 | 10077246 | ||
| L000447 | Trent | Lott | Trent Lott | Republican | MS | Senate | 1973-01-03 | 2007-12-18 | 0 | N00003329 | ["S8MS00162"] | 300069 | 00707 | 53311 | S203 | Trent Lott | 1941-10-09 | M | 6 | 2007-12-18 | 0 | 5044 | 525 | 3067 | 0 | |||
| L000177 | Walter | Leake | Walter Leake | Republican | MS | Senate | 1817-12-01 | 1821-03-03 | 0 | [] | 406679 | Walter Leake | 1762-05-25 | M | 1 | 1821-03-03 | 0 | 0 | 0 | 0 | 0 |
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);