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 = "Senate", party = "Democrat" and state = "NY" sorted by full_name

✎ View and edit SQL

This data as json, CSV (advanced)

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

is_current 2

  • 0 15
  • 1 2

state 1

  • NY · 17 ✖

party 1

  • Democrat · 17 ✖

chamber 1

  • Senate · 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
S000148 Charles Schumer Charles E. Schumer Chuck Democrat NY Senate   1981-01-05 2029-01-03 1 N00001093 ["S8NY00082", "H0NY16010"] 300087 01036 26976 S270 Chuck Schumer Chuck Schumer 1950-11-23 M 9   0 10647 1325 9287 12813719
D000317 Daniel Dickinson Daniel Dickinson   Democrat NY Senate   1844-11-30 1851-03-03 0   [] 403437       Daniel S. Dickinson   1800-09-11 M 2 1851-03-03 0 0 0 0 0
M001054 Daniel Moynihan Daniel Moynihan   Democrat NY Senate   1977-01-04 2001-01-03 0   ["S6NY00052"] 400563 01407   S113 Daniel Patrick Moynihan   1927-03-16 M 5 2001-01-03 0 1064 1056 672 0
H000590 David Hill David Hill   Democrat NY Senate   1892-01-01 1897-03-03 0   [] 405452       David B. Hill   1843-08-29 M 1 1897-03-03 0 0 0 0 0
M001090 Edward Murphy Edward Murphy   Democrat NY Senate   1893-08-07 1899-03-03 0   [] 408054       Edward Murphy Jr.   1836-12-15 M 2 1899-03-03 0 0 0 0 0
K000133 Francis Kernan Francis Kernan   Democrat NY Senate   1863-12-07 1881-03-03 0   [] 406299       Francis Kernan   1816-01-14 M 4 1881-03-03 0 0 0 0 0
F000304 Henry Foster Henry Foster   Democrat NY Senate   1837-09-04 1845-12-31 0   [] 404253       Henry A. Foster   1800-05-07 M 2 1845-12-31 0 0 0 0 0
L000224 Herbert Lehman Herbert Lehman   Democrat NY Senate   1949-01-03 1957-01-03 0   [] 406728       Herbert H. Lehman   1878-03-28 M 2 1957-01-03 0 0 0 0 0
C001041 Hillary Clinton Hillary Clinton   Democrat NY Senate   2001-01-03 2009-01-21 0 N00000019 ["S0NY00188"] 300022 01631 55463 S278 Hillary Clinton Hillary Clinton 1947-10-26 F 2 2009-01-21 0 1064 327 2616 15540
M000615 James Mead James Mead   Democrat NY Senate   1919-05-19 1947-01-03 0   [] 407604       James M. Mead   1885-12-27 M 5 1947-01-03 0 0 0 0 0
O000050 James O’Gorman James O’Gorman   Democrat NY Senate   1911-04-04 1917-03-03 0   [] 408285       James A. O'Gorman   1860-05-05 M 2 1917-03-03 0 0 0 0 0
D000365 John Dix John Dix   Democrat NY Senate   1845-12-01 1849-03-03 0   [] 403482       John Adams Dix   1798-07-24 M 1 1849-03-03 0 0 0 0 0
G000555 Kirsten Gillibrand Kirsten E. Gillibrand   Democrat NY Senate   2007-01-04 2031-01-03 1 N00027658 ["H6NY20167", "S0NY00410"] 412223 01866 65147 S331 Kirsten Gillibrand Kirsten Gillibrand 1966-12-09 F 5   0 697 612 7820 8160313
K000114 Robert Kennedy Robert Kennedy   Democrat NY Senate   1965-01-04 1969-01-03 0   [] 406280       Robert F. Kennedy   1925-11-20 M 1 1969-01-03 0 0 0 0 0
W000021 Robert Wagner Robert Wagner   Democrat NY Senate   1927-12-05 1949-12-31 0   [] 411200       Robert F. Wagner   1877-06-08 M 4 1949-12-31 0 0 0 0 0
C000769 Royal Copeland Royal Copeland   Democrat NY Senate   1923-12-03 1939-01-03 0   [] 402888       Royal S. Copeland   1868-11-07 M 3 1939-01-03 0 0 0 0 0
W000770 Silas Wright Silas Wright   Democrat NY Senate   1827-12-03 1845-03-03 0   [] 411919       Silas Wright   1795-05-24 M 4 1845-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 83.29ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API