congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where chamber = "Senate", party = "Republican" and state = "DE" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, last_name, first_served, fec_ids, thomas_id, terms_count, speech_count, bills_sponsored, vote_count, first_served (date), last_served (date), birthday (date), served_until (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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| H000577 | Anthony | Higgins | Anthony Higgins | Republican | DE | Senate | 1889-12-02 | 1895-03-03 | 0 | [] | 405439 | Anthony Higgins (politician) | 1840-10-01 | M | 2 | 1895-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| R000377 | Caesar | Rodney | Caesar Rodney | Republican | DE | Senate | 1803-10-17 | 1823-01-29 | 0 | [] | 409347 | Caesar Augustus Rodney | 1772-01-04 | M | 4 | 1823-01-29 | 0 | 0 | 0 | 0 | 0 | |||||||
| B001013 | Clayton | Buck | Clayton Buck | Republican | DE | Senate | 1943-01-06 | 1949-01-03 | 0 | [] | 401963 | C. Douglass Buck | 1890-03-21 | M | 2 | 1949-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| H000325 | Daniel | Hastings | Daniel Hastings | Republican | DE | Senate | 1928-12-10 | 1937-01-03 | 0 | [] | 405196 | Daniel O. Hastings | 1874-03-05 | M | 2 | 1937-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| R000221 | Harry | Richardson | Harry Richardson | Republican | DE | Senate | 1907-12-02 | 1913-03-03 | 0 | [] | 409197 | Harry A. Richardson | 1853-01-01 | M | 2 | 1913-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| D000559 | Henry | du Pont | Henry du Pont | Republican | DE | Senate | 1906-06-13 | 1917-03-03 | 0 | [] | 403616 | Henry A. du Pont | 1838-07-30 | M | 2 | 1917-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| A000110 | James | Allee | James Allee | Republican | DE | Senate | 1903-11-09 | 1907-03-03 | 0 | [] | 400767 | J. Frank Allee | 1857-12-02 | M | 1 | 1907-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| B000593 | James | Boggs | James Boggs | Republican | DE | Senate | 1947-01-03 | 1973-01-03 | 0 | [] | 401561 | J. Caleb Boggs | 1909-05-15 | M | 5 | 1973-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| T000335 | John | Townsend | John Townsend | Republican | DE | Senate | 1929-04-15 | 1941-01-03 | 0 | [] | 410906 | John G. Townsend Jr. | 1871-05-31 | M | 3 | 1941-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| W000518 | John | Williams | John Williams | Republican | DE | Senate | 1947-01-03 | 1971-01-03 | 0 | [] | 411675 | John J. Williams (politician) | 1904-05-17 | M | 5 | 1971-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| B000100 | Lewis | Ball | Lewis Ball | Republican | DE | Senate | 1901-12-02 | 1925-03-03 | 0 | [] | 401102 | L. Heisler Ball | 1861-09-21 | M | 5 | 1925-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| D000560 | Thomas | du Pont | Thomas du Pont | Republican | DE | Senate | 1921-07-07 | 1929-03-03 | 0 | [] | 403618 | T. Coleman du Pont | 1863-12-11 | M | 2 | 1929-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| R000460 | William | Roth | William Roth | Republican | DE | Senate | 1967-01-10 | 2001-01-03 | 0 | ["S6DE00016"] | 400565 | 01425 | S083 | William Roth | 1921-07-22 | M | 6 | 2001-01-03 | 0 | 763 | 676 | 672 | 0 |
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);