congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where is_current = 1, party = "Republican" and state = "NY" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_served, thomas_id, ballotpedia_id, gender, terms_count, trade_count, vote_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| G000597 | Andrew | Garbarino | Andrew R. Garbarino | Republican | NY | House | 2 | 2021-01-03 | 2027-01-03 | 1 | N00046030 | ["H0NY02234"] | 456836 | Andrew Garbarino | 1984-09-27 | M | 4 | 16 | 50 | 89 | 2135 | 12272948 | ||||||
| T000478 | Claudia | Tenney | Claudia Tenney | Republican | NY | House | 24 | 2017-01-03 | 2027-01-03 | 1 | N00036351 | ["H4NY22051"] | 412720 | 127668 | Claudia Tenney | Claudia Tenney | 1961-02-04 | F | 6 | 0 | 294 | 200 | 3313 | 25814723 | ||||
| S001196 | Elise | Stefanik | Elise M. Stefanik | Republican | NY | House | 21 | 2015-01-06 | 2027-01-03 | 1 | N00035523 | ["H4NY21079"] | 412648 | 02263 | 152539 | Elise Stefanik | Elise Stefanik | 1984-07-02 | F | 7 | 0 | 558 | 185 | 5621 | 8969662 | |||
| L000599 | Michael | Lawler | Michael Lawler | Republican | NY | House | 17 | 2023-01-03 | 2027-01-03 | 1 | N00051208 | ["H2NY17162"] | 456924 | 192271 | Mike Lawler | 1986-09-09 | M | 3 | 0 | 142 | 157 | 1686 | 19706372 | |||||
| L000600 | Nicholas | Langworthy | Nicholas A. Langworthy | Republican | NY | House | 23 | 2023-01-03 | 2027-01-03 | 1 | N00051431 | ["H2NY23228"] | 456927 | 208663 | Nick Langworthy | 1981-02-27 | M | 3 | 0 | 186 | 70 | 1686 | 1596704 | |||||
| L000598 | Nicolas | LaLota | Nick LaLota | Republican | NY | House | 1 | 2023-01-03 | 2027-01-03 | 1 | N00050419 | ["H2NY01190"] | 456920 | 191957 | Nick LaLota | 1978-06-23 | M | 3 | 0 | 60 | 54 | 1686 | 5174966 | |||||
| M000317 | Nicole | Malliotakis | Nicole Malliotakis | Republican | NY | House | 11 | 2021-01-03 | 2027-01-03 | 1 | N00044040 | ["H0NY11078"] | 456837 | Nicole Malliotakis | 1980-11-11 | F | 4 | 0 | 106 | 129 | 2135 | 11443764 |
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);