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

17 rows where chamber = "House", party = "Ind. Republican-Democrat" and state = "NY" sorted by full_name

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: first_name, first_served, birthday, terms_count, first_served (date), last_served (date), birthday (date), served_until (date)

state 1

  • NY · 17 ✖

party 1

  • Ind. Republican-Democrat · 17 ✖

is_current 1

  • 0 17

chamber 1

  • House · 17 ✖
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
W000027 Abram Wakeman Abram Wakeman   Ind. Republican-Democrat NY House 8 1855-12-03 1857-03-03 0   [] 411206       Abram Wakeman   1824-05-31 M 2 1857-03-03 0 0 0 0 0
M000319 Andrew McCarty Andrew McCarty   Ind. Republican-Democrat NY House 22 1855-12-03 1857-03-03 0   [] 407330       Andrew Z. McCarty   1808-07-14 M 2 1857-03-03 0 0 0 0 0
C000457 Bayard Clarke Bayard Clarke   Ind. Republican-Democrat NY House 9 1855-12-03 1857-03-03 0   [] 402595       Bayard Clarke   1815-03-17 M 2 1857-03-03 0 0 0 0 0
P000543 Benjamin Pringle Benjamin Pringle   Ind. Republican-Democrat NY House 30 1853-12-05 1857-03-03 0   [] 408927       Benjamin Pringle   1807-11-09 M 3 1857-03-03 0 0 0 0 0
S000416 George Simmons George Simmons   Ind. Republican-Democrat NY House 16 1853-12-05 1857-03-03 0   [] 409910       George A. Simmons   1791-09-08 M 3 1857-03-03 0 0 0 0 0
P000198 Guy Pelton Guy Pelton   Ind. Republican-Democrat NY House 3 1855-12-03 1857-03-03 0   [] 408601       Guy R. Pelton   1824-08-03 M 2 1857-03-03 0 0 0 0 0
S000990 James Stranahan James Stranahan   Ind. Republican-Democrat NY House 2 1855-12-03 1857-03-03 0   [] 410448       James S. T. Stranahan   1808-04-25 M 2 1857-03-03 0 0 0 0 0
H000931 Jonas Hughston Jonas Hughston   Ind. Republican-Democrat NY House 19 1855-12-03 1857-03-03 0   [] 405776       Jonas A. Hughston     M 2 1857-03-03 0 0 0 0 0
M000744 Killian Miller Killian Miller   Ind. Republican-Democrat NY House 12 1855-12-03 1857-03-03 0   [] 407723       Killian Miller   1785-07-30 M 2 1857-03-03 0 0 0 0 0
K000213 Rufus King Rufus King   Ind. Republican-Democrat NY House 11 1855-12-03 1857-03-03 0   [] 406373       Rufus H. King   1820-01-20 M 2 1857-03-03 0 0 0 0 0
S000013 Russell Sage Russell Sage   Ind. Republican-Democrat NY House 13 1853-12-05 1857-03-03 0   [] 409533       Russell Sage   1816-08-04 M 3 1857-03-03 0 0 0 0 0
D000332 Samuel Dickson Samuel Dickson   Ind. Republican-Democrat NY House 14 1855-12-03 1857-03-03 0   [] 403450       Samuel Dickson (American politician)   1807-03-29 M 2 1857-03-03 0 0 0 0 0
H000355 Solomon Haven Solomon Haven   Ind. Republican-Democrat NY House 32 1851-12-01 1857-03-03 0   [] 405224       Solomon G. Haven   1810-11-27 M 4 1857-03-03 0 0 0 0 0
C000353 Thomas Child Thomas Child   Ind. Republican-Democrat NY House 7 1855-12-03 1857-03-03 0   [] 402492       Thomas Child Jr.   1818-03-22 M 2 1857-03-03 0 0 0 0 0
F000181 Thomas Flagler Thomas Flagler   Ind. Republican-Democrat NY House 31 1853-12-05 1857-03-03 0   [] 404136       Thomas T. Flagler   1811-10-12 M 3 1857-03-03 0 0 0 0 0
H000799 Thomas Horton Thomas Horton   Ind. Republican-Democrat NY House 18 1855-12-03 1857-03-03 0   [] 405648       Thomas R. Horton     M 2 1857-03-03 0 0 0 0 0
G000179 William Gilbert William Gilbert   Ind. Republican-Democrat NY House 23 1855-12-03 1857-03-03 0   [] 404545       William A. Gilbert   1815-01-25 M 2 1857-03-03 0 0 0 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 752.632ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API