congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where party = "Ind. Republican" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, last_name, district, first_served, last_served, terms_count, served_until, trade_count, first_served (date), last_served (date), birthday (date), served_until (date)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A000180 | Albert | Anderson | Albert Anderson | Ind. Republican | IA | House | 8 | 1887-12-05 | 1889-03-03 | 0 | [] | 400835 | Albert R. Anderson | 1837-11-08 | M | 2 | 1889-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000370 | George | Shiras | George Shiras | Ind. Republican | PA | House | 29 | 1903-11-09 | 1905-03-03 | 0 | [] | 409864 | George Shiras III | 1859-01-01 | M | 2 | 1905-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| W000283 | Guilford | Wells | Guilford Wells | Ind. Republican | MS | House | 2 | 1875-12-06 | 1877-03-03 | 0 | [] | 411448 | Guilford Wiley Wells | 1840-02-14 | M | 2 | 1877-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| P000441 | Henry | Porter | Henry Porter | Ind. Republican | PA | House | 31 | 1903-11-09 | 1905-03-03 | 0 | [] | 408832 | Henry Kirke Porter | 1840-11-24 | M | 2 | 1905-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| T000345 | Henry | Tracy | Henry Tracy | Ind. Republican | PA | House | 13 | 1863-12-07 | 1865-03-03 | 0 | [] | 410916 | Henry Wells Tracy | 1807-09-24 | M | 2 | 1865-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| B000923 | James | Brown | James Brown | Ind. Republican | PA | House | 32 | 1903-11-09 | 1905-03-03 | 0 | [] | 401878 | James W. Brown | 1844-07-14 | M | 2 | 1905-03-03 | 2 | 0 | 0 | 0 | 0 | ||||||
| H000032 | James | Hale | James Hale | Ind. Republican | PA | House | 18 | 1859-12-05 | 1865-03-03 | 0 | [] | 404917 | James Tracy Hale | 1810-10-14 | M | 4 | 1865-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| C000901 | John | Creely | John Creely | Ind. Republican | PA | House | 2 | 1871-03-04 | 1873-03-03 | 0 | [] | 403013 | John V. Creely | 1839-11-14 | M | 2 | 1873-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| K000081 | John | Kelso | John Kelso | Ind. Republican | MO | House | 4 | 1865-12-04 | 1867-03-03 | 0 | [] | 406250 | John R. Kelso | 1831-03-23 | M | 2 | 1867-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000237 | Lewis | Selye | Lewis Selye | Ind. Republican | NY | House | 28 | 1867-03-04 | 1869-03-03 | 0 | [] | 409741 | Lewis Selye | 1803-07-11 | M | 2 | 1869-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| P000445 | Peter | Porter | Peter Porter | Ind. Republican | NY | House | 34 | 1907-12-02 | 1909-03-03 | 0 | [] | 408834 | Peter A. Porter | 1853-10-10 | M | 2 | 1909-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| C000216 | Samuel | Cary | Samuel Cary | Ind. Republican | OH | House | 2 | 1867-03-04 | 1869-03-03 | 0 | [] | 402362 | Samuel Fenton Cary | 1814-02-18 | M | 2 | 1869-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| L000529 | Theodore | Lyman | Theodore Lyman | Ind. Republican | MA | House | 9 | 1883-12-03 | 1885-03-03 | 0 | [] | 407013 | Theodore Lyman III | 1833-08-23 | M | 2 | 1885-03-03 | 0 | 0 | 0 | 0 | 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);