congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where is_current = 1, party = "Republican" and state = "LA" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_served, last_served, thomas_id, gender, terms_count, trade_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| C001075 | Bill | Cassidy | Bill Cassidy | Republican | LA | Senate | 2009-01-06 | 2027-01-03 | 1 | N00030245 | ["H8LA00017", "S4LA00107"] | 412269 | 01925 | 69494 | S373 | Bill Cassidy | Bill Cassidy | 1957-09-28 | M | 4 | 215 | 800 | 489 | 8630 | 25398324 | |||
| H001077 | Clay | Higgins | Clay Higgins | Republican | LA | House | 3 | 2017-01-03 | 2027-01-03 | 1 | N00039953 | ["H6LA03148"] | 412705 | 174484 | Clay Higgins | Clay Higgins | 1961-08-24 | M | 6 | 0 | 163 | 147 | 4296 | 1519025 | ||||
| K000393 | John | Kennedy | John Kennedy | Republican | LA | Senate | 2017-01-03 | 2029-01-03 | 1 | N00026823 | ["S4LA00065"] | 412679 | 35496 | S389 | John Kennedy (Louisiana politician) | John Neely Kennedy | 1951-11-21 | M | 3 | 0 | 719 | 326 | 3664 | 4869509 | ||||
| L000595 | Julia | Letlow | Julia Letlow | Republican | LA | House | 5 | 2021-04-14 | 2027-01-03 | 1 | N00047972 | ["H2LA05126"] | 456859 | 195745 | Julia Letlow | Julia Letlow | 1981-03-16 | F | 4 | 224 | 45 | 22 | 2037 | 2670299 | ||||
| J000299 | Mike | Johnson | Mike Johnson | Republican | LA | House | 4 | 2017-01-03 | 2027-01-03 | 1 | N00039106 | ["H6LA04138"] | 412706 | 156097 | Mike Johnson | Mike Johnson (Louisiana) | 1972-01-30 | M | 6 | 0 | 182 | 69 | 3833 | 5785704 | ||||
| S001176 | Steve | Scalise | Steve Scalise | Republican | LA | House | 1 | 2008-05-07 | 2027-01-03 | 1 | N00009660 | ["H0LA01087"] | 412261 | 01892 | 9026 | Steve Scalise | Steve Scalise | 1965-10-06 | M | 10 | 0 | 601 | 90 | 10508 | 14793290 |
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);