home / openregs

congress_members

All current and historical members of Congress (12,700+) from the congress-legislators project. Includes bioguide_id (universal key), party, state, chamber, and cross-reference IDs for OpenSecrets, FEC, GovTrack, and more.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

18 rows where chamber = "Senate", party = "Republican" and state = "VA" sorted by full_name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: first_name, last_name, first_served, last_served, opensecrets_id, fec_ids, thomas_id, ballotpedia_id, birthday, terms_count, served_until, speech_count, bills_sponsored, vote_count, fec_total_received, first_served (date), last_served (date), birthday (date), served_until (date), fec_ids (array)

state 1

  • VA · 18 ✖

party 1

  • Republican · 18 ✖

is_current 1

  • 0 18

chamber 1

  • Senate · 18 ✖
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
V000083 Abraham Venable Abraham Venable   Republican VA Senate   1791-10-24 1805-03-03 0   [] 411139       Abraham B. Venable   1758-11-20 M 3 1805-03-03 0 0 0 0 0
M000891 Andrew Moore Andrew Moore   Republican VA Senate   1789-03-04 1809-03-03 0   [] 407863       Andrew Moore (politician)     M 4 1809-03-03 0 0 0 0 0
M000213 Armistead Mason Armistead Mason   Republican VA Senate   1816-01-01 1817-03-03 0   [] 407231       Armistead Thomson Mason   1787-08-04 M 1 1817-03-03 0 0 0 0 0
A000121 George Allen George Allen   Republican VA Senate   1991-11-05 2007-01-03 0 N00009957 [] 300004 00013 22404 S274 George Allen (American politician) George Allen 1952-03-08 M 3 2007-01-03 0 485 106 1953 0
R000241 Harrison Riddleberger Harrison Riddleberger   Republican VA Senate   1883-12-03 1889-03-03 0   [] 409217       Harrison H. Riddleberger   1844-10-04 M 2 1889-03-03 0 0 0 0 0
T000107 Henry Tazewell Henry Tazewell   Republican VA Senate   1794-01-01 1799-03-03 0   [] 410689       Henry Tazewell   1753-11-27 M 1 1799-03-03 0 0 0 0 0
B000127 James Barbour James Barbour   Republican VA Senate   1815-12-04 1825-12-31 0   [] 401128       James Barbour   1775-06-10 M 2 1825-12-31 0 0 0 0 0
P000386 James Pleasants James Pleasants   Republican VA Senate   1811-11-04 1823-03-03 0   [] 408780       James Pleasants   1769-10-24 M 3 1823-03-03 0 0 0 0 0
E000197 John Eppes John Eppes   Republican VA Senate   1803-10-17 1819-12-31 0   [] 403884       John Wayles Eppes   1773-04-19 M 3 1819-12-31 0 0 0 0 0
L000285 John Lewis John Lewis   Republican VA Senate   1870-01-01 1875-03-03 0   [] 406783       John F. Lewis   1818-03-01 M 1 1875-03-03 0 0 0 0 0
T000086 John Taylor John Taylor   Republican VA Senate   1792-10-18 1824-08-21 0   [] 410668       John Taylor of Caroline   1753-12-19 M 6 1824-08-21 0 0 0 0 0
W000154 John Warner John Warner   Republican VA Senate   1979-01-15 2009-01-03 0 N00002061 ["S8VA00107"] 300099 01452 53356 S143 John Warner   1927-02-18 M 6 2009-01-03 0 2847 346 3282 7300
T000367 Paul Trible Paul Trible   Republican VA Senate   1977-01-04 1989-01-03 0   [] 410936 01169     Paul Trible   1946-12-29 M 3 1989-01-03 0 0 148 0 0
B000802 Richard Brent Richard Brent   Republican VA Senate   1795-12-07 1815-03-03 0   [] 401759       Richard Brent (politician)     M 4 1815-03-03 0 0 0 0 0
M000226 Stevens Mason Stevens Mason   Republican VA Senate   1794-01-01 1803-03-03 0   [] 407244       Stevens Thomson Mason (senator)   1760-12-29 M 2 1803-03-03 0 0 0 0 0
G000183 William Giles William Giles   Republican VA Senate   1790-12-07 1815-03-03 0   [] 404548       William Branch Giles   1762-08-12 M 5 1815-03-03 0 0 0 0 0
M000067 William Mahone William Mahone   Republican VA Senate   1881-12-05 1887-03-03 0   [] 407095       William Mahone   1826-12-01 M 2 1887-03-03 0 0 0 0 0
S000189 William Scott William Scott   Republican VA Senate   1967-01-10 1979-01-03 0   [] 409694 01433     William L. Scott   1915-07-01 M 3 1979-01-03 0 0 73 0 0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 222.064ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API