congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where is_current = 1, party = "Republican" and state = "WV" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: last_served, thomas_id, ballotpedia_id, gender, terms_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| M001205 | Carol | Miller | Carol D. Miller | Republican | WV | House | 1 | 2019-01-03 | 2027-01-03 | 1 | N00041542 | ["H8WV03097"] | 412837 | 52123 | Carol Miller (politician) | Carol Miller (West Virginia) | 1950-11-04 | F | 5 | 119 | 97 | 94 | 3087 | 5548682 | ||||
| J000312 | Jim | Justice | James C. Justice | Republican | WV | Senate | 2025-01-14 | 2031-01-03 | 1 | N00053062 | ["S4WV00332"] | 456969 | S437 | Jim Justice | 1951-04-27 | M | 2 | 1 | 10 | 8 | 703 | 6811413 | ||||||
| M001235 | Riley | Moore | Riley M. Moore | Republican | WV | House | 2 | 2025-01-03 | 2027-01-03 | 1 | N00051965 | ["H4WV02205"] | 457031 | Riley Moore | 1980-07-01 | M | 2 | 0 | 11 | 13 | 445 | 1902720 | ||||||
| C001047 | Shelley | Capito | Shelley Moore Capito | Republican | WV | Senate | 2001-01-03 | 2027-01-03 | 1 | N00009771 | ["H0WV02138", "S4WV00159"] | 400061 | 01676 | 11701 | S372 | Shelley Moore Capito | Shelley Moore Capito | 1953-11-26 | F | 5 | 725 | 1072 | 279 | 12859 | 10570792 |
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);