Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created December 10, 2012 17:11
Show Gist options
  • Save tmcw/4251900 to your computer and use it in GitHub Desktop.
Save tmcw/4251900 to your computer and use it in GitHub Desktop.
Legislator Ages
<!DOCTYPE html>
<meta charset="utf-8">
<style>
rect.bar {
fill: steelblue;
}
.axis text {
font: 10px sans-serif;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var format = d3.time.format("%Y-%m-%d");
var yformat = d3.time.format("%Y");
d3.json('legislators.json')
.get()
.on('load', function(data) {
var births = data.response.legislators.map(function(d) {
return format.parse(d.legislator.birthdate);
});
var data = d3.nest()
.key(function(d) {
return d.getFullYear();
})
.entries(births);
var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.time.scale()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickFormat(yformat);
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
x.domain(d3.extent(data, function(d) { return format.parse(d.key + '-01-01'); }));
y.domain(d3.extent(data, function(d) { return d.values.length }));
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Frequency");
svg.selectAll(".bar")
.data(data)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function(d) { return x(format.parse(d.key + '-01-01')); })
.attr("width", 10)
.attr("y", function(d) { return y(d.values.length); })
.attr("height", function(d) { return height - y(d.values.length); });
});
</script>
{"response": {"legislators": [{"legislator": {"website": "http://ackerman.house.gov/", "fax": "202-225-1589", "govtrack_id": "400003", "firstname": "Gary", "chamber": "house", "middlename": "L.", "lastname": "Ackerman", "congress_office": "2111 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2601", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepAckerman", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gary_Ackerman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repgaryackerman", "birthdate": "1942-11-19", "bioguide_id": "A000022", "fec_id": "H4NY07011", "state": "NY", "crp_id": "N00001143", "official_rss": "", "facebook_id": "RepAcherman", "party": "D", "email": "", "votesmart_id": "26970"}}, {"legislator": {"website": "http://adams.house.gov/", "fax": "202-226-6299", "govtrack_id": "412414", "firstname": "Sandra", "chamber": "house", "middlename": "", "lastname": "Adams", "congress_office": "216 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2706", "webform": "", "youtube_url": "http://www.youtube.com/RepSandyAdams", "nickname": "", "gender": "F", "district": "24", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sandy_Adams", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSandyAdams", "birthdate": "1956-12-14", "bioguide_id": "A000366", "fec_id": "H0FL24049", "state": "FL", "crp_id": "N00030926", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "31041"}}, {"legislator": {"website": "http://aderholt.house.gov/", "fax": "202-225-5587", "govtrack_id": "400004", "firstname": "Robert", "chamber": "house", "middlename": "B.", "lastname": "Aderholt", "congress_office": "2264 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4876", "webform": "http://aderholt.house.gov/?sectionid=195&sectiontree=195", "youtube_url": "http://www.youtube.com/RobertAderholt", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Aderholt", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Robert_Aderholt", "birthdate": "1965-07-22", "bioguide_id": "A000055", "fec_id": "H6AL04098", "state": "AL", "crp_id": "N00003028", "official_rss": "", "facebook_id": "RobertAderholt", "party": "R", "email": "", "votesmart_id": "441"}}, {"legislator": {"website": "http://www.akaka.senate.gov", "fax": "202-224-2126", "govtrack_id": "300001", "firstname": "Daniel", "chamber": "senate", "middlename": "Kahikina", "lastname": "Akaka", "congress_office": "141 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6361", "webform": "http://www.akaka.senate.gov/email-senator-akaka.cfm", "youtube_url": "http://www.youtube.com/senatorakaka", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Akaka", "in_office": true, "senate_class": "I", "name_suffix": "Sr.", "twitter_id": "", "birthdate": "1924-09-11", "bioguide_id": "A000069", "fec_id": "S0HI00084", "state": "HI", "crp_id": "N00007653", "official_rss": "", "facebook_id": "danielakaka", "party": "D", "email": "", "votesmart_id": "53286"}}, {"legislator": {"website": "http://akin.house.gov/", "fax": "202-225-2563", "govtrack_id": "400005", "firstname": "W. Todd", "chamber": "house", "middlename": "", "lastname": "Akin", "congress_office": "117 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2561", "webform": "http://akin.house.gov/email.shtml", "youtube_url": "http://www.youtube.com/RepToddAkin", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/W._Todd_Akin", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "ToddAkin", "birthdate": "1947-07-05", "bioguide_id": "A000358", "fec_id": "H0MO02148", "state": "MO", "crp_id": "N00009677", "official_rss": "", "facebook_id": "CongressmanToddAkin", "party": "R", "email": "", "votesmart_id": "9301"}}, {"legislator": {"website": "http://www.alexander.senate.gov/", "fax": "202-228-3398", "govtrack_id": "300002", "firstname": "Lamar", "chamber": "senate", "middlename": "", "lastname": "Alexander", "congress_office": "455 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-4944", "webform": "http://www.alexander.senate.gov/public/index.cfm?p=Email", "youtube_url": "http://www.youtube.com/lamaralexander", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Lamar_Alexander", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "senalexander", "birthdate": "1940-07-03", "bioguide_id": "A000360", "fec_id": "S2TN00058", "state": "TN", "crp_id": "N00009888", "official_rss": "", "facebook_id": "lamaralexander", "party": "R", "email": "", "votesmart_id": "15691"}}, {"legislator": {"website": "http://alexander.house.gov/", "fax": "202-225-5639", "govtrack_id": "400006", "firstname": "Rodney", "chamber": "house", "middlename": "M.", "lastname": "Alexander", "congress_office": "316 Cannon House Office Building", "eventful_id": "", "phone": "202-225-8490", "webform": "http://www.house.gov/alexander/content/webform/zipauth.htm", "youtube_url": "http://www.youtube.com/RepRodneyMAlexander", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rodney_Alexander", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "USRepAlexander", "birthdate": "1946-12-05", "bioguide_id": "A000361", "fec_id": "H2LA05084", "state": "LA", "crp_id": "N00025464", "official_rss": "", "facebook_id": "20002702544", "party": "R", "email": "", "votesmart_id": "4545"}}, {"legislator": {"website": "http://altmire.house.gov/", "fax": "202-226-2274", "govtrack_id": "412231", "firstname": "Jason", "chamber": "house", "middlename": "", "lastname": "Altmire", "congress_office": "332 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2565", "webform": "https://forms.house.gov/altmire/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/congressmanaltmire", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jason_Altmire", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJasonAltmire", "birthdate": "1968-03-07", "bioguide_id": "A000362", "fec_id": "H6PA04110", "state": "PA", "crp_id": "N00027664", "official_rss": "", "facebook_id": "1258677943", "party": "D", "email": "", "votesmart_id": "59999"}}, {"legislator": {"website": "http://amash.house.gov/", "fax": "202-225-5144", "govtrack_id": "412438", "firstname": "Justin", "chamber": "house", "middlename": "", "lastname": "Amash", "congress_office": "114 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3831", "webform": "", "youtube_url": "http://www.youtube.com/user/AmashMI03", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Justin_Amash", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjustinamash", "birthdate": "1980-04-18", "bioguide_id": "A000367", "fec_id": "H0MI03126", "state": "MI", "crp_id": "N00031938", "official_rss": "", "facebook_id": "repjustinamash", "party": "R", "email": "", "votesmart_id": "105566"}}, {"legislator": {"website": "http://amodei.house.gov/", "fax": "202-225-5679", "govtrack_id": "412500", "firstname": "Mark", "chamber": "house", "middlename": "E.", "lastname": "Amodei", "congress_office": "125 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6155", "webform": "https://amodei.house.gov/contact-me", "youtube_url": "http://www.youtube.com/markamodeinv2", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Amodei", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MarkAmodeiNV2", "birthdate": "1958-06-12", "bioguide_id": "A000369", "fec_id": "H2NV02395", "state": "NV", "crp_id": "N00031177", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "12537"}}, {"legislator": {"website": "http://www.house.gov/andrews/", "fax": "", "govtrack_id": "400008", "firstname": "Robert", "chamber": "house", "middlename": "E.", "lastname": "Andrews", "congress_office": "2265 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6501", "webform": "http://www.house.gov/andrews/contact_form_za.shtml", "youtube_url": "", "nickname": "Rob", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Andrews", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAndrews", "birthdate": "1957-08-04", "bioguide_id": "A000210", "fec_id": "H0NJ01066", "state": "NJ", "crp_id": "N00000826", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26949"}}, {"legislator": {"website": "http://austria.house.gov/", "fax": "202-225-1984", "govtrack_id": "412265", "firstname": "Steven", "chamber": "house", "middlename": "", "lastname": "Austria", "congress_office": "439 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4324", "webform": "https://forms.house.gov/austria/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongressmanAustria", "nickname": "Steve", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_Austria", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "SteveAustria", "birthdate": "1958-10-12", "bioguide_id": "A000365", "fec_id": "H8OH07065", "state": "OH", "crp_id": "N00029412", "official_rss": "", "facebook_id": "186083068071784", "party": "R", "email": "", "votesmart_id": "23398"}}, {"legislator": {"website": "http://www.ayotte.senate.gov", "fax": "", "govtrack_id": "412493", "firstname": "Kelly", "chamber": "senate", "middlename": "A ", "lastname": "Ayotte", "congress_office": "144 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3324", "webform": "http://www.ayotte.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/KellyAyotte", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Kelly_Ayotte", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "", "birthdate": "1968-06-27", "bioguide_id": "A000368", "fec_id": "S0NH00235", "state": "NH", "crp_id": "N00030980", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "42352"}}, {"legislator": {"website": "http://www.house.gov/baca/", "fax": "202-225-8671", "govtrack_id": "400009", "firstname": "Joe", "chamber": "house", "middlename": "", "lastname": "Baca", "congress_office": "2366 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6161", "webform": "http://www.house.gov/baca/zipauth.shtml", "youtube_url": "http://www.youtube.com/user/RepJoeBaca", "nickname": "", "gender": "M", "district": "43", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Baca", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJoeBaca", "birthdate": "1947-01-23", "bioguide_id": "B001234", "fec_id": "H6CA42099", "state": "CA", "crp_id": "N00007089", "official_rss": "", "facebook_id": "BacaCA43", "party": "D", "email": "", "votesmart_id": "8039"}}, {"legislator": {"website": "http://bachmann.house.gov/", "fax": "202-225-6475", "govtrack_id": "412216", "firstname": "Michele", "chamber": "house", "middlename": "", "lastname": "Bachmann", "congress_office": "103 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2331", "webform": "http://bachmann.house.gov/Email_zip.htm", "youtube_url": "http://www.youtube.com/RepMicheleBachmann", "nickname": "", "gender": "F", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michele_Bachmann", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MicheleBachmann", "birthdate": "1956-04-06", "bioguide_id": "B001256", "fec_id": "H6MN06074", "state": "MN", "crp_id": "N00027493", "official_rss": "", "facebook_id": "7658849357", "party": "R", "email": "", "votesmart_id": "54675"}}, {"legislator": {"website": "http://bachus.house.gov/", "fax": "202-225-2082", "govtrack_id": "400010", "firstname": "Spencer", "chamber": "house", "middlename": "", "lastname": "Bachus", "congress_office": "2246 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4921", "webform": "http://www.house.gov/writerep/", "youtube_url": "http://www.youtube.com/CongressmanBachus", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Spencer_Bachus", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BachusAL06", "birthdate": "1947-12-28", "bioguide_id": "B000013", "fec_id": "H2AL06035", "state": "AL", "crp_id": "N00008091", "official_rss": "", "facebook_id": "SpencerBachus", "party": "R", "email": "", "votesmart_id": "26715"}}, {"legislator": {"website": "http://tammybaldwin.house.gov/", "fax": "202-225-6942", "govtrack_id": "400013", "firstname": "Tammy", "chamber": "house", "middlename": "", "lastname": "Baldwin", "congress_office": "2446 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2906", "webform": "http://www.house.gov/formbaldwin/IMA/get_address.htm", "youtube_url": "http://www.youtube.com/RepTammyBaldwin", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tammy_Baldwin", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1962-02-11", "bioguide_id": "B001230", "fec_id": "H8WI00018", "state": "WI", "crp_id": "N00004367", "official_rss": "", "facebook_id": "TammyBaldwin", "party": "D", "email": "", "votesmart_id": "3470"}}, {"legislator": {"website": "http://barber.house.gov/", "fax": "202-225-0378", "govtrack_id": "412502", "firstname": "Ron", "chamber": "house", "middlename": "", "lastname": "Barber", "congress_office": "1030 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2542", "webform": "https://barber.house.gov/contact-me/email-me", "youtube_url": "", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ron_Barber", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1945-08-25", "bioguide_id": "B001279", "fec_id": "H2AZ08094", "state": "AZ", "crp_id": "N00033981", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "137292"}}, {"legislator": {"website": "http://barletta.house.gov/", "fax": "202-225-0764", "govtrack_id": "412469", "firstname": "Lou", "chamber": "house", "middlename": "", "lastname": "Barletta", "congress_office": "510 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6511", "webform": "", "youtube_url": "http://www.youtube.com/RepLouBarletta", "nickname": "", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lou_Barletta", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLouBarletta", "birthdate": "1956-01-28", "bioguide_id": "B001269", "fec_id": "H2PA11098", "state": "PA", "crp_id": "N00025495", "official_rss": "", "facebook_id": "loujbarletta", "party": "R", "email": "", "votesmart_id": "47143"}}, {"legislator": {"website": "http://www.barrasso.senate.gov", "fax": "202-224-1724", "govtrack_id": "412251", "firstname": "John", "chamber": "senate", "middlename": "", "lastname": "Barrasso", "congress_office": "307 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-6441", "webform": "http://www.barrasso.senate.gov/public/index.cfm?FuseAction=ContactUs.ContactForm", "youtube_url": "", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Barrasso", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenJohnBarrasso", "birthdate": "1952-07-21", "bioguide_id": "B001261", "fec_id": "S6WY00068", "state": "WY", "crp_id": "N00006236", "official_rss": "", "facebook_id": "johnbarrasso", "party": "R", "email": "", "votesmart_id": "52662"}}, {"legislator": {"website": "http://www.barrow.house.gov/", "fax": "202-225-3377", "govtrack_id": "400628", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Barrow", "congress_office": "2202 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2823", "webform": "https://forms.house.gov/barrow/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepJohnBarrow", "nickname": "", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Barrow", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjohnbarrow", "birthdate": "1955-10-31", "bioguide_id": "B001252", "fec_id": "H4GA12010", "state": "GA", "crp_id": "N00026080", "official_rss": "", "facebook_id": "CongressmanJohnBarrow", "party": "D", "email": "", "votesmart_id": "31780"}}, {"legislator": {"website": "http://bartlett.house.gov", "fax": "202-225-2193", "govtrack_id": "400017", "firstname": "Roscoe", "chamber": "house", "middlename": "G.", "lastname": "Bartlett", "congress_office": "2412 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2721", "webform": "http://www.bartlett.house.gov/Email_Roscoe/", "youtube_url": "http://www.youtube.com/RepRoscoeBartlett", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Roscoe_Bartlett", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1926-06-03", "bioguide_id": "B000208", "fec_id": "H2MD06054", "state": "MD", "crp_id": "N00002017", "official_rss": "", "facebook_id": "roscoebartlett", "party": "R", "email": "", "votesmart_id": "26891"}}, {"legislator": {"website": "http://joebarton.house.gov/", "fax": "202-225-3052", "govtrack_id": "400018", "firstname": "Joe", "chamber": "house", "middlename": "Linus", "lastname": "Barton", "congress_office": "2109 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2002", "webform": "http://joebarton.house.gov/ContactJoe.aspx?Type=Email", "youtube_url": "http://www.youtube.com/RepJoeBarton", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Barton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJoeBarton", "birthdate": "1949-09-15", "bioguide_id": "B000213", "fec_id": "H4TX06117", "state": "TX", "crp_id": "N00005656", "official_rss": "", "facebook_id": "RepJoeBarton", "party": "R", "email": "", "votesmart_id": "27082"}}, {"legislator": {"website": "http://bass.house.gov/", "fax": "202-225-2946", "govtrack_id": "400019", "firstname": "Charles", "chamber": "house", "middlename": "", "lastname": "Bass", "congress_office": "2350 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5206", "webform": "", "youtube_url": "http://www.youtube.com/RepCharlesBass", "nickname": "Charlie", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Charlie_Bass", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCharlesBass", "birthdate": "1952-01-08", "bioguide_id": "B000220", "fec_id": "H0NH02017", "state": "NH", "crp_id": "N00000423", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "22216"}}, {"legislator": {"website": "http://karenbass.house.gov/", "fax": "202- 225-2422", "govtrack_id": "412404", "firstname": "Karen", "chamber": "house", "middlename": "", "lastname": "Bass", "congress_office": "408 Cannon House Office Building", "eventful_id": "", "phone": "202-225-7084", "webform": "", "youtube_url": "http://www.youtube.com/user/RepKarenBass", "nickname": "", "gender": "F", "district": "33", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Karen_Bass", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKarenBass", "birthdate": "1953-10-03", "bioguide_id": "B001270", "fec_id": "H0CA33117", "state": "CA", "crp_id": "N00031877", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "28963"}}, {"legislator": {"website": "http://www.baucus.senate.gov", "fax": "202-224-0515", "govtrack_id": "300005", "firstname": "Max", "chamber": "senate", "middlename": "S.", "lastname": "Baucus", "congress_office": "511 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2651", "webform": "http://www.baucus.senate.gov/contact/emailForm.cfm?subj=issue", "youtube_url": "http://www.youtube.com/SenatorBaucus", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Max_Baucus", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1941-12-11", "bioguide_id": "B000243", "fec_id": "S8MT00010", "state": "MT", "crp_id": "N00004643", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "53315"}}, {"legislator": {"website": "http://becerra.house.gov/", "fax": "202-225-2202", "govtrack_id": "400021", "firstname": "Xavier", "chamber": "house", "middlename": "", "lastname": "Becerra", "congress_office": "1226 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6235", "webform": "http://becerra.house.gov/HoR/CA31/Hidden+Content/Email+Signup+Form.htm", "youtube_url": "http://www.youtube.com/XavierBecerra", "nickname": "", "gender": "M", "district": "31", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Xavier_Becerra", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repbecerra", "birthdate": "1958-01-26", "bioguide_id": "B000287", "fec_id": "H2CA30143", "state": "CA", "crp_id": "N00009774", "official_rss": "", "facebook_id": "XavierBecerra", "party": "D", "email": "", "votesmart_id": "26754"}}, {"legislator": {"website": "http://www.begich.senate.gov", "fax": "202-224-2354", "govtrack_id": "412326", "firstname": "Mark", "chamber": "senate", "middlename": "", "lastname": "Begich", "congress_office": "111 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3004", "webform": "http://www.begich.senate.gov/public/index.cfm?p=EmailSenator", "youtube_url": "http://www.youtube.com/ussenatormarkbegich", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Begich", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenatorBegich", "birthdate": "1962-03-30", "bioguide_id": "B001265", "fec_id": "S8AK00090", "state": "AK", "crp_id": "N00029901", "official_rss": "", "facebook_id": "Begich", "party": "D", "email": "", "votesmart_id": "79426"}}, {"legislator": {"website": "http://benishek.house.gov/", "fax": "202- 225-4744", "govtrack_id": "412436", "firstname": "Dan", "chamber": "house", "middlename": "", "lastname": "Benishek", "congress_office": "514 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4735", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dan_Benishek", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CongressmanDan", "birthdate": "1952-04-20", "bioguide_id": "B001271", "fec_id": "H0MI01088", "state": "MI", "crp_id": "N00031934", "official_rss": "", "facebook_id": "CongressmanDan", "party": "R", "email": "", "votesmart_id": "123056"}}, {"legislator": {"website": "http://www.bennet.senate.gov", "fax": "202-228-5036", "govtrack_id": "412330", "firstname": "Michael", "chamber": "senate", "middlename": "", "lastname": "Bennet", "congress_office": "458 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5852", "webform": "http://www.bennet.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorbennet", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Bennet", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenBennetCo", "birthdate": "1964-11-28", "bioguide_id": "B001267", "fec_id": "S0CO00211", "state": "CO", "crp_id": "N00030608", "official_rss": "", "facebook_id": "senatorbennet", "party": "D", "email": "", "votesmart_id": "110942"}}, {"legislator": {"website": "http://berg.house.gov/", "fax": "202-226-0893", "govtrack_id": "412458", "firstname": "Rick", "chamber": "house", "middlename": "", "lastname": "Berg", "congress_office": "323 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2611", "webform": "", "youtube_url": "http://www.youtube.com/reprickberg", "nickname": "", "gender": "M", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rick_Berg", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRickBerg", "birthdate": "1959-08-16", "bioguide_id": "B001272", "fec_id": "H0ND00135", "state": "ND", "crp_id": "N00031629", "official_rss": "", "facebook_id": "RepRickBerg", "party": "R", "email": "", "votesmart_id": "7693"}}, {"legislator": {"website": "http://berkley.house.gov/", "fax": "202-225-3119", "govtrack_id": "400024", "firstname": "Shelley", "chamber": "house", "middlename": "", "lastname": "Berkley", "congress_office": "405 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5965", "webform": "http://berkley.house.gov/contact/email.html", "youtube_url": "http://www.youtube.com/ShelleyBerkley", "nickname": "", "gender": "F", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Shelley_Berkley", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repberkley", "birthdate": "1951-01-20", "bioguide_id": "B001231", "fec_id": "H8NV01071", "state": "NV", "crp_id": "N00009818", "official_rss": "", "facebook_id": "shelleyberkley", "party": "D", "email": "", "votesmart_id": "22744"}}, {"legislator": {"website": "http://www.house.gov/berman/", "fax": "202-225-3196", "govtrack_id": "400025", "firstname": "Howard", "chamber": "house", "middlename": "L.", "lastname": "Berman", "congress_office": "2221 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4695", "webform": "http://www.house.gov/berman/contact/", "youtube_url": "http://www.youtube.com/RepHowardBerman", "nickname": "", "gender": "M", "district": "28", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Howard_Berman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepHowardBerman", "birthdate": "1941-04-15", "bioguide_id": "B000410", "fec_id": "H2CA26026", "state": "CA", "crp_id": "N00008094", "official_rss": "", "facebook_id": "RepHowardBerman", "party": "D", "email": "", "votesmart_id": "26756"}}, {"legislator": {"website": "http://judybiggert.house.gov/", "fax": "202-225-9420", "govtrack_id": "400027", "firstname": "Judy", "chamber": "house", "middlename": "", "lastname": "Biggert", "congress_office": "2113 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3515", "webform": "http://judybiggert.house.gov/ContactJudy.aspx", "youtube_url": "http://www.youtube.com/JudyBiggert", "nickname": "", "gender": "F", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Judy_Biggert", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JudyBiggert", "birthdate": "1937-08-15", "bioguide_id": "B001232", "fec_id": "H8IL13069", "state": "IL", "crp_id": "N00004762", "official_rss": "", "facebook_id": "JudyBiggert", "party": "R", "email": "", "votesmart_id": "6298"}}, {"legislator": {"website": "http://bilbray.house.gov/", "fax": "202-225-2558", "govtrack_id": "400570", "firstname": "Brian", "chamber": "house", "middlename": "P.", "lastname": "Bilbray", "congress_office": "2410 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-0508", "webform": "http://www.house.gov/bilbray/contact.shtml", "youtube_url": "http://www.youtube.com/CongressmanBilbray", "nickname": "", "gender": "M", "district": "50", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Brian_Bilbray", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BilbrayCA50", "birthdate": "1951-01-28", "bioguide_id": "B000461", "fec_id": "H4CA49032", "state": "CA", "crp_id": "N00006981", "official_rss": "", "facebook_id": "CongressmanBilbray", "party": "R", "email": "", "votesmart_id": "21916"}}, {"legislator": {"website": "http://bilirakis.house.gov/", "fax": "202-225-4085", "govtrack_id": "412250", "firstname": "Gus", "chamber": "house", "middlename": "Michael", "lastname": "Bilirakis", "congress_office": "1124 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5755", "webform": "http://bilirakis.house.gov/index.php?option=com_content&task=view&id=212&Itemid=44", "youtube_url": "http://www.youtube.com/RepGusBilirakis", "nickname": "Gus", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gus_Michael_Bilirakis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGusBilirakis", "birthdate": "1963-02-08", "bioguide_id": "B001257", "fec_id": "H6FL09070", "state": "FL", "crp_id": "N00027462", "official_rss": "", "facebook_id": "GusBilirakis", "party": "R", "email": "", "votesmart_id": "17318"}}, {"legislator": {"website": "http://www.bingaman.senate.gov", "fax": "202-224-2852", "govtrack_id": "300009", "firstname": "Jeff", "chamber": "senate", "middlename": "", "lastname": "Bingaman", "congress_office": "703 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5521", "webform": "http://www.bingaman.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenJeffBingaman", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Bingaman", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "", "birthdate": "1943-10-03", "bioguide_id": "B000468", "fec_id": "S2NM00021", "state": "NM", "crp_id": "N00006518", "official_rss": "", "facebook_id": "jeffbingaman", "party": "D", "email": "", "votesmart_id": "53326"}}, {"legislator": {"website": "http://robbishop.house.gov/", "fax": "202-225-5857", "govtrack_id": "400029", "firstname": "Rob", "chamber": "house", "middlename": "", "lastname": "Bishop", "congress_office": "123 Cannon House Office Building", "eventful_id": "", "phone": "202-225-0453", "webform": "http://robbishop.house.gov/ZipAuth.aspx", "youtube_url": "http://www.youtube.com/CongressmanBishop", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rob_Bishop", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1951-07-13", "bioguide_id": "B001250", "fec_id": "H2UT01094", "state": "UT", "crp_id": "N00025292", "official_rss": "", "facebook_id": "130802746950682", "party": "R", "email": "", "votesmart_id": "50544"}}, {"legislator": {"website": "http://bishop.house.gov/", "fax": "202-225-2203", "govtrack_id": "400030", "firstname": "Sanford", "chamber": "house", "middlename": "D.", "lastname": "Bishop", "congress_office": "2429 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3631", "webform": "http://bishop.house.gov/display.cfm?section_id=13", "youtube_url": "http://www.youtube.com/RepSanfordBishop", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sanford_Bishop", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "SanfordBishop", "birthdate": "1947-02-04", "bioguide_id": "B000490", "fec_id": "H2GA02031", "state": "GA", "crp_id": "N00002674", "official_rss": "", "facebook_id": "366739521606", "party": "D", "email": "", "votesmart_id": "26817"}}, {"legislator": {"website": "http://timbishop.house.gov/", "fax": "202-225-3143", "govtrack_id": "400031", "firstname": "Timothy", "chamber": "house", "middlename": "H.", "lastname": "Bishop", "congress_office": "306 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3826", "webform": "http://timbishop.house.gov/?sectionid=96&sectiontree=7,96", "youtube_url": "http://www.youtube.com/timbishop01", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Timothy_Bishop", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "timbishopny", "birthdate": "1950-06-01", "bioguide_id": "B001242", "fec_id": "H2NY01067", "state": "NY", "crp_id": "N00025413", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "44518"}}, {"legislator": {"website": "http://black.house.gov/", "fax": "202- 225-6887", "govtrack_id": "412478", "firstname": "Diane", "chamber": "house", "middlename": "", "lastname": "Black", "congress_office": "1531 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4231", "webform": "", "youtube_url": "", "nickname": "", "gender": "F", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Diane_Black", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDianeBlack", "birthdate": "1951-01-16", "bioguide_id": "B001273", "fec_id": "H0TN06257", "state": "TN", "crp_id": "N00031539", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "25292"}}, {"legislator": {"website": "http://blackburn.house.gov/", "fax": "202-225-3004", "govtrack_id": "400032", "firstname": "Marsha", "chamber": "house", "middlename": "", "lastname": "Blackburn", "congress_office": "217 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2811", "webform": "http://blackburn.house.gov/contactform/", "youtube_url": "http://www.youtube.com/RepMarshaBlackburn", "nickname": "", "gender": "F", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Marsha_Blackburn", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MarshaBlackburn", "birthdate": "1952-06-06", "bioguide_id": "B001243", "fec_id": "H2TN06030", "state": "TN", "crp_id": "N00003105", "official_rss": "", "facebook_id": "marshablackburn", "party": "R", "email": "", "votesmart_id": "25186"}}, {"legislator": {"website": "http://blumenauer.house.gov/", "fax": "202-225-8941", "govtrack_id": "400033", "firstname": "Earl", "chamber": "house", "middlename": "", "lastname": "Blumenauer", "congress_office": "1502 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4811", "webform": "http://blumenauer.house.gov/index.php?option=com_email_form&Itemid=206", "youtube_url": "http://www.youtube.com/RepBlumenauer", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Earl_Blumenauer", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "blumenauermedia", "birthdate": "1948-08-16", "bioguide_id": "B000574", "fec_id": "H6OR03064", "state": "OR", "crp_id": "N00007727", "official_rss": "", "facebook_id": "blumenauer", "party": "D", "email": "", "votesmart_id": "367"}}, {"legislator": {"website": "http://www.blumenthal.senate.gov", "fax": "", "govtrack_id": "412490", "firstname": "Richard", "chamber": "senate", "middlename": "", "lastname": "Blumenthal", "congress_office": "702 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2823", "webform": "http://www.blumenthal.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorBlumenthal", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Blumenthal", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenBlumenthal", "birthdate": "1946-02-13", "bioguide_id": "B001277", "fec_id": "S0CT00177", "state": "CT", "crp_id": "N00031685", "official_rss": "", "facebook_id": "dickblumenthal", "party": "D", "email": "", "votesmart_id": "1568"}}, {"legislator": {"website": "http://www.blunt.senate.gov", "fax": "", "govtrack_id": "400034", "firstname": "Roy", "chamber": "senate", "middlename": "", "lastname": "Blunt", "congress_office": "260 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5721", "webform": "http://www.blunt.senate.gov/public/index.cfm/contact-form?p=contact-roy", "youtube_url": "http://www.youtube.com/RepRoyBlunt", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Roy_Blunt", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "RoyBlunt", "birthdate": "1950-01-10", "bioguide_id": "B000575", "fec_id": "H6MO07128", "state": "MO", "crp_id": "N00005195", "official_rss": "", "facebook_id": "SenatorBlunt", "party": "R", "email": "", "votesmart_id": "418"}}, {"legislator": {"website": "http://johnboehner.house.gov/", "fax": "202-225-0704", "govtrack_id": "400036", "firstname": "John", "chamber": "house", "middlename": "A.", "lastname": "Boehner", "congress_office": "1011 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6205", "webform": "http://www.johnboehner.house.gov/Contact/", "youtube_url": "http://www.youtube.com/JohnBoehner", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Boehner", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "SpeakerBoehner", "birthdate": "1949-11-17", "bioguide_id": "B000589", "fec_id": "H0OH08029", "state": "OH", "crp_id": "N00003675", "official_rss": "", "facebook_id": "johnboehner", "party": "R", "email": "", "votesmart_id": "27015"}}, {"legislator": {"website": "http://bonamici.house.gov/", "fax": "", "govtrack_id": "412501", "firstname": "Suzanne", "chamber": "house", "middlename": "", "lastname": "Bonamici", "congress_office": "2338 Rayburn House Office Building", "eventful_id": "", "phone": "", "webform": "https://bonamici.house.gov/contact-me", "youtube_url": "", "nickname": "", "gender": "F", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Suzanne_Bonamici", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1954-10-14", "bioguide_id": "B001278", "fec_id": "H2OR01133", "state": "OR", "crp_id": "N00033474", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "59641"}}, {"legislator": {"website": "http://bonner.house.gov", "fax": "202-225-0562", "govtrack_id": "400038", "firstname": "Josiah", "chamber": "house", "middlename": "Robins", "lastname": "Bonner", "congress_office": "2236 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4931", "webform": "https://forms.house.gov/bonner/webforms/issue_subscribe.html", "youtube_url": "http://www.youtube.com/user/JoBonner", "nickname": "Jo", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Josiah_Bonner", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "repjobonner", "birthdate": "1959-11-19", "bioguide_id": "B001244", "fec_id": "H2AL01077", "state": "AL", "crp_id": "N00025330", "official_rss": "", "facebook_id": "jobonner", "party": "R", "email": "", "votesmart_id": "27522"}}, {"legislator": {"website": "http://bono.house.gov/", "fax": "202-225-2961", "govtrack_id": "400039", "firstname": "Mary", "chamber": "house", "middlename": "Whitaker", "lastname": "Bono Mack", "congress_office": "104 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5330", "webform": "http://www.house.gov/formbono/issue.htm", "youtube_url": "http://www.youtube.com/BonoMackCA45", "nickname": "", "gender": "F", "district": "45", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mary_Bono_Mack", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MaryBonoMack", "birthdate": "1961-10-24", "bioguide_id": "B001228", "fec_id": "H8CA44034", "state": "CA", "crp_id": "N00007068", "official_rss": "", "facebook_id": "mary.b.mack", "party": "R", "email": "", "votesmart_id": "1434"}}, {"legislator": {"website": "http://www.boozman.senate.gov/", "fax": "", "govtrack_id": "400040", "firstname": "John", "chamber": "senate", "middlename": "N.", "lastname": "Boozman", "congress_office": "320 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4843", "webform": "http://www.boozman.senate.gov/public/index.cfm/e-mail-me", "youtube_url": "http://www.youtube.com/BoozmanPressOffice", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Boozman", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "JohnBoozman", "birthdate": "1950-12-10", "bioguide_id": "B001236", "fec_id": "H2AR03176", "state": "AR", "crp_id": "N00013873", "official_rss": "", "facebook_id": "JohnBoozman", "party": "R", "email": "", "votesmart_id": "27958"}}, {"legislator": {"website": "http://www.house.gov/bordallo/", "fax": "202-226-0341", "govtrack_id": "400041", "firstname": "Madeline", "chamber": "house", "middlename": "", "lastname": "Bordallo", "congress_office": "2441 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1188", "webform": "http://www.house.gov/bordallo/IMA/issue.htm", "youtube_url": "", "nickname": "", "gender": "F", "district": "0", "title": "Del", "congresspedia_url": "http://www.opencongress.org/wiki/Madeline_Bordallo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1933-05-31", "bioguide_id": "B001245", "fec_id": "H2GU00033", "state": "GU", "crp_id": "N00024866", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "1751"}}, {"legislator": {"website": "http://boren.house.gov/", "fax": "202-225-3038", "govtrack_id": "400645", "firstname": "David", "chamber": "house", "middlename": "Daniel", "lastname": "Boren", "congress_office": "2447 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2701", "webform": "http://www.house.gov/boren/emailsignup.shtml", "youtube_url": "http://www.youtube.com/CongressmanBoren", "nickname": "Dan", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Daniel_Boren", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1973-08-02", "bioguide_id": "B001254", "fec_id": "H4OK02089", "state": "OK", "crp_id": "N00026481", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "46182"}}, {"legislator": {"website": "http://boswell.house.gov/", "fax": "202-225-5608", "govtrack_id": "400042", "firstname": "Leonard", "chamber": "house", "middlename": "L.", "lastname": "Boswell", "congress_office": "1026 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3806", "webform": "http://boswell.house.gov/messageform.htm", "youtube_url": "http://www.youtube.com/RepLeonardBoswell", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Leonard_Boswell", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "LeonardBoswell", "birthdate": "1934-01-10", "bioguide_id": "B000652", "fec_id": "H6IA03144", "state": "IA", "crp_id": "N00004208", "official_rss": "", "facebook_id": "leonard.boswell", "party": "D", "email": "", "votesmart_id": "384"}}, {"legislator": {"website": "http://boustany.house.gov/", "fax": "202-225-5724", "govtrack_id": "400636", "firstname": "Charles", "chamber": "house", "middlename": "", "lastname": "Boustany", "congress_office": "1431 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2031", "webform": "http://boustany.house.gov/ContactCharles.asp", "youtube_url": "http://www.youtube.com/boustanyla07", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Boustany", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "RepBoustany", "birthdate": "1956-02-21", "bioguide_id": "B001255", "fec_id": "H4LA07029", "state": "LA", "crp_id": "N00026595", "official_rss": "", "facebook_id": "6377009769", "party": "R", "email": "", "votesmart_id": "35514"}}, {"legislator": {"website": "http://www.boxer.senate.gov", "fax": "202-224-0454", "govtrack_id": "300011", "firstname": "Barbara", "chamber": "senate", "middlename": "", "lastname": "Boxer", "congress_office": "112 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3553", "webform": "http://www.boxer.senate.gov/en/contact/", "youtube_url": "http://www.youtube.com/SenatorBoxer", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Barbara_Boxer", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "senatorboxer", "birthdate": "1940-11-11", "bioguide_id": "B000711", "fec_id": "S2CA00286", "state": "CA", "crp_id": "N00006692", "official_rss": "", "facebook_id": "barbaraboxer", "party": "D", "email": "", "votesmart_id": "53274"}}, {"legislator": {"website": "http://www.house.gov/brady/", "fax": "202-225-5524", "govtrack_id": "400046", "firstname": "Kevin", "chamber": "house", "middlename": "P.", "lastname": "Brady", "congress_office": "301 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4901", "webform": "http://www.house.gov/brady/contact_page.html", "youtube_url": "http://www.youtube.com/KBrady8", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kevin_Brady", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKevinBrady", "birthdate": "1955-04-11", "bioguide_id": "B000755", "fec_id": "H6TX08100", "state": "TX", "crp_id": "N00005883", "official_rss": "", "facebook_id": "kevinbrady", "party": "R", "email": "", "votesmart_id": "361"}}, {"legislator": {"website": "http://brady.house.gov/", "fax": "202-225-0088", "govtrack_id": "400047", "firstname": "Robert", "chamber": "house", "middlename": "A.", "lastname": "Brady", "congress_office": "102 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4731", "webform": "http://www.house.gov/formrobertbrady/issue.htm", "youtube_url": "http://www.youtube.com/BradyPA01", "nickname": "Bob", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Brady", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBrady", "birthdate": "1945-04-07", "bioguide_id": "B001227", "fec_id": "H8PA01153", "state": "PA", "crp_id": "N00001619", "official_rss": "", "facebook_id": "118845109487", "party": "D", "email": "", "votesmart_id": "2519"}}, {"legislator": {"website": "http://www.braley.house.gov/", "fax": "202-225-6666", "govtrack_id": "412208", "firstname": "Bruce", "chamber": "house", "middlename": "", "lastname": "Braley", "congress_office": "1727 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2911", "webform": "https://forms.house.gov/braley/webforms/issue_subscribe.html", "youtube_url": "http://www.youtube.com/RepBruceBraley", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bruce_Braley", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "brucebraley", "birthdate": "1957-10-30", "bioguide_id": "B001259", "fec_id": "H6IA01098", "state": "IA", "crp_id": "N00027464", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "57382"}}, {"legislator": {"website": "http://brooks.house.gov/", "fax": "202-225-4392", "govtrack_id": "412395", "firstname": "Mo", "chamber": "house", "middlename": "", "lastname": "Brooks", "congress_office": "1641 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4801", "webform": "", "youtube_url": "http://www.youtube.com/user/RepMoBrooks", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mo_Brooks", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMoBrooks", "birthdate": "1954-04-29", "bioguide_id": "B001274", "fec_id": "H0AL05163", "state": "AL", "crp_id": "N00030910", "official_rss": "", "facebook_id": "155220881193244", "party": "R", "email": "", "votesmart_id": "121610"}}, {"legislator": {"website": "http://broun.house.gov/", "fax": "202-226-0776", "govtrack_id": "412252", "firstname": "Paul", "chamber": "house", "middlename": "C.", "lastname": "Broun", "congress_office": "325 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4101", "webform": "http://broun.house.gov/email.shtml", "youtube_url": "http://www.youtube.com/RepPaulBroun", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Paul_Broun", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepPaulBrounMD", "birthdate": "1946-12-07", "bioguide_id": "B001262", "fec_id": "H8GA10049", "state": "GA", "crp_id": "N00028986", "official_rss": "", "facebook_id": "RepPaulBroun", "party": "R", "email": "", "votesmart_id": "70001"}}, {"legislator": {"website": "http://www.house.gov/corrinebrown/", "fax": "202-225-2256", "govtrack_id": "400048", "firstname": "Corrine", "chamber": "house", "middlename": "", "lastname": "Brown", "congress_office": "2336 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-0123", "webform": "http://www.house.gov/corrinebrown/IMA/issue.shtml", "youtube_url": "http://www.youtube.com/user/CongresswomanBrown", "nickname": "", "gender": "F", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Corrine_Brown", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCorrineBrown", "birthdate": "1946-11-11", "bioguide_id": "B000911", "fec_id": "H4FL03060", "state": "FL", "crp_id": "N00002713", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26797"}}, {"legislator": {"website": "http://www.scottbrown.senate.gov", "fax": "", "govtrack_id": "412384", "firstname": "Scott", "chamber": "senate", "middlename": "P.", "lastname": "Brown", "congress_office": "359 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-4543", "webform": "http://www.scottbrown.senate.gov/public/index.cfm/emailscottbrown", "youtube_url": "http://www.youtube.com/ussenatorscottbrown", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Scott_Brown", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "USSenScottBrown", "birthdate": "1959-09-12", "bioguide_id": "B001268", "fec_id": "S0MA00109", "state": "MA", "crp_id": "N00031174", "official_rss": "", "facebook_id": "141799555838816", "party": "R", "email": "", "votesmart_id": "18919"}}, {"legislator": {"website": "http://www.brown.senate.gov/", "fax": "202-228-6321", "govtrack_id": "400050", "firstname": "Sherrod", "chamber": "senate", "middlename": "C.", "lastname": "Brown", "congress_office": "713 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2315", "webform": "http://www.brown.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SherrodBrownOhio", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Sherrod_Brown", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenSherrodBrown", "birthdate": "1952-11-09", "bioguide_id": "B000944", "fec_id": "H2OH13033", "state": "OH", "crp_id": "N00003535", "official_rss": "", "facebook_id": "109453899081640", "party": "D", "email": "", "votesmart_id": "27018"}}, {"legislator": {"website": "http://buchanan.house.gov/", "fax": "202-226-0828", "govtrack_id": "412196", "firstname": "Vern", "chamber": "house", "middlename": "", "lastname": "Buchanan", "congress_office": "221 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5015", "webform": "http://buchanan.house.gov/contact.shtml", "youtube_url": "http://www.youtube.com/vernbuchanan", "nickname": "", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Vern_Buchanan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "VernBuchanan", "birthdate": "1951-05-08", "bioguide_id": "B001260", "fec_id": "H6FL13148", "state": "FL", "crp_id": "N00027626", "official_rss": "", "facebook_id": "CongressmanBuchanan", "party": "R", "email": "", "votesmart_id": "66247"}}, {"legislator": {"website": "http://bucshon.house.gov/", "fax": "202-225-3284", "govtrack_id": "412427", "firstname": "Larry", "chamber": "house", "middlename": "", "lastname": "Bucshon", "congress_office": "1123 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4636", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Larry_Bucshon", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLarryBucshon", "birthdate": "1962-05-31", "bioguide_id": "B001275", "fec_id": "H0IN08114", "state": "IN", "crp_id": "N00031227", "official_rss": "", "facebook_id": "RepLarryBucshon", "party": "R", "email": "", "votesmart_id": "120335"}}, {"legislator": {"website": "http://buerkle.house.gov/", "fax": "202-225-4042", "govtrack_id": "412456", "firstname": "Ann", "chamber": "house", "middlename": "", "lastname": "Buerkle", "congress_office": "1630 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3701", "webform": "", "youtube_url": "", "nickname": "", "gender": "F", "district": "25", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ann_Marie_Buerkle", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBuerkle", "birthdate": "1951-05-08", "bioguide_id": "B001276", "fec_id": "H0NY25078", "state": "NY", "crp_id": "N00031640", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "127047"}}, {"legislator": {"website": "http://burgess.house.gov/", "fax": "202-225-2919", "govtrack_id": "400052", "firstname": "Michael", "chamber": "house", "middlename": "C.", "lastname": "Burgess", "congress_office": "2241 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-7772", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/MichaelCBurgessMD", "nickname": "", "gender": "M", "district": "26", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Burgess", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "michaelcburgess", "birthdate": "1950-12-23", "bioguide_id": "B001248", "fec_id": "H2TX26093", "state": "TX", "crp_id": "N00025219", "official_rss": "", "facebook_id": "michaelcburgess", "party": "R", "email": "", "votesmart_id": "50120"}}, {"legislator": {"website": "http://www.burr.senate.gov", "fax": "202-228-2981", "govtrack_id": "400054", "firstname": "Richard", "chamber": "senate", "middlename": "M.", "lastname": "Burr", "congress_office": "217 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3154", "webform": "http://www.burr.senate.gov/public/index.cfm?FuseAction=Contact.ContactForm", "youtube_url": "http://www.youtube.com/senatorrichardburr", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Burr", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "senatorburr", "birthdate": "1955-11-30", "bioguide_id": "B001135", "fec_id": "S4NC00089", "state": "NC", "crp_id": "N00002221", "official_rss": "", "facebook_id": "senatorburr", "party": "R", "email": "", "votesmart_id": "21787"}}, {"legislator": {"website": "http://burton.house.gov/", "fax": "202-225-0016", "govtrack_id": "400055", "firstname": "Dan", "chamber": "house", "middlename": "L.", "lastname": "Burton", "congress_office": "2308 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2276", "webform": "http://burton.house.gov/contacts/new", "youtube_url": "http://www.youtube.com/CongressmanDanBurton", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dan_Burton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDanBurton", "birthdate": "1938-06-21", "bioguide_id": "B001149", "fec_id": "H2IN06023", "state": "IN", "crp_id": "N00000010", "official_rss": "", "facebook_id": "congressmandanburton", "party": "R", "email": "", "votesmart_id": "26855"}}, {"legislator": {"website": "http://butterfield.house.gov/", "fax": "202-225-3354", "govtrack_id": "400616", "firstname": "George", "chamber": "house", "middlename": "K.", "lastname": "Butterfield", "congress_office": "2305 Rayburn Cannon House Office Building", "eventful_id": "", "phone": "202-225-3101", "webform": "http://butterfield.house.gov/contactinfo.asp", "youtube_url": "http://www.youtube.com/gkbutterfield", "nickname": "G.K.", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/George_Butterfield", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "gkbutterfield", "birthdate": "1947-04-27", "bioguide_id": "B001251", "fec_id": "H4NC01046", "state": "NC", "crp_id": "N00027035", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "41077"}}, {"legislator": {"website": "http://calvert.house.gov/", "fax": "202-225-2004", "govtrack_id": "400057", "firstname": "Ken", "chamber": "house", "middlename": "S.", "lastname": "Calvert", "congress_office": "2269 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1986", "webform": "http://calvert.house.gov/awenhnjafe.asp", "youtube_url": "http://www.youtube.com/RepKenCalvert", "nickname": "", "gender": "M", "district": "44", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ken_Calvert", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "KenCalvert", "birthdate": "1953-06-08", "bioguide_id": "C000059", "fec_id": "H2CA37023", "state": "CA", "crp_id": "N00007099", "official_rss": "", "facebook_id": "70063393423", "party": "R", "email": "", "votesmart_id": "26777"}}, {"legislator": {"website": "http://camp.house.gov/", "fax": "202-225-9679", "govtrack_id": "400058", "firstname": "David", "chamber": "house", "middlename": "Lee", "lastname": "Camp", "congress_office": "341 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3561", "webform": "http://camp.house.gov/WriteRep.aspx", "youtube_url": "http://www.youtube.com/DaveCampYT", "nickname": "Dave", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Lee_Camp", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDaveCamp", "birthdate": "1953-07-09", "bioguide_id": "C000071", "fec_id": "H0MI10071", "state": "MI", "crp_id": "N00008086", "official_rss": "", "facebook_id": "repdavecamp", "party": "R", "email": "", "votesmart_id": "26911"}}, {"legislator": {"website": "http://campbell.house.gov", "fax": "202-225-9177", "govtrack_id": "412011", "firstname": "John", "chamber": "house", "middlename": "B.T.", "lastname": "Campbell", "congress_office": "1507 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5611", "webform": "http://campbell.house.gov/Contact/ContactForm.htm", "youtube_url": "http://www.youtube.com/RepJohnCampbellCA48", "nickname": "", "gender": "M", "district": "48", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_B.T._Campbell", "in_office": true, "senate_class": "", "name_suffix": "III", "twitter_id": "RepJohnCampbell", "birthdate": "1955-07-19", "bioguide_id": "C001064", "fec_id": "H6CA48039", "state": "CA", "crp_id": "N00027565", "official_rss": "", "facebook_id": "JohnCampbell", "party": "R", "email": "", "votesmart_id": "29368"}}, {"legislator": {"website": "http://canseco.house.gov/", "fax": "202-225-2237", "govtrack_id": "412481", "firstname": "Francisco", "chamber": "house", "middlename": "", "lastname": "Canseco", "congress_office": "1339 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4511", "webform": "", "youtube_url": "http://www.youtube.com/CongressmanCanseco", "nickname": "Quico", "gender": "M", "district": "23", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Francisco_Canseco", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCanseco", "birthdate": "1949-07-30", "bioguide_id": "C001082", "fec_id": "H4TX28046", "state": "TX", "crp_id": "N00026722", "official_rss": "", "facebook_id": "RepCanseco", "party": "R", "email": "", "votesmart_id": "50146"}}, {"legislator": {"website": "http://cantor.house.gov/", "fax": "202-225-0011", "govtrack_id": "400060", "firstname": "Eric", "chamber": "house", "middlename": "I.", "lastname": "Cantor", "congress_office": "303 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2815", "webform": "https://writerep.house.gov/writerep/welcome.shtml", "youtube_url": "http://www.youtube.com/EricCantor", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Eric_Cantor", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "gopleader", "birthdate": "1963-06-06", "bioguide_id": "C001046", "fec_id": "H0VA07042", "state": "VA", "crp_id": "N00013131", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "5121"}}, {"legislator": {"website": "http://www.cantwell.senate.gov", "fax": "202-228-0514", "govtrack_id": "300018", "firstname": "Maria", "chamber": "senate", "middlename": "", "lastname": "Cantwell", "congress_office": "311 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3441", "webform": "http://www.cantwell.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorCantwell", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Maria_Cantwell", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "CantwellPress", "birthdate": "1958-10-13", "bioguide_id": "C000127", "fec_id": "S8WA00194", "state": "WA", "crp_id": "N00007836", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "27122"}}, {"legislator": {"website": "http://capito.house.gov/", "fax": "202-225-7856", "govtrack_id": "400061", "firstname": "Shelley", "chamber": "house", "middlename": "Moore", "lastname": "Capito", "congress_office": "2443 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2711", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/RepShelleyCapito", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Shelley_Moore_Capito", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepShelley", "birthdate": "1953-11-26", "bioguide_id": "C001047", "fec_id": "H0WV02138", "state": "WV", "crp_id": "N00009771", "official_rss": "", "facebook_id": "8057864757", "party": "R", "email": "", "votesmart_id": "11701"}}, {"legislator": {"website": "http://capps.house.gov/", "fax": "202-225-5632", "govtrack_id": "400062", "firstname": "Lois", "chamber": "house", "middlename": "", "lastname": "Capps", "congress_office": "2231 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3601", "webform": "http://www.house.gov/capps/contact/send_an_email.shtml", "youtube_url": "http://www.youtube.com/RepLoisCapps", "nickname": "", "gender": "F", "district": "23", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lois_Capps", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1938-01-10", "bioguide_id": "C001036", "fec_id": "H8CA22089", "state": "CA", "crp_id": "N00007232", "official_rss": "", "facebook_id": "loiscapps", "party": "D", "email": "", "votesmart_id": "16886"}}, {"legislator": {"website": "http://www.house.gov/capuano/", "fax": "202-225-9322", "govtrack_id": "400063", "firstname": "Michael", "chamber": "house", "middlename": "E.", "lastname": "Capuano", "congress_office": "1414 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5111", "webform": "http://www.house.gov/capuano/contact/email.shtml", "youtube_url": "http://www.youtube.com/RepMikeCapuano", "nickname": "Mike", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Capuano", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-01-09", "bioguide_id": "C001037", "fec_id": "H8MA08071", "state": "MA", "crp_id": "N00000267", "official_rss": "", "facebook_id": "mecapuano", "party": "D", "email": "", "votesmart_id": "18883"}}, {"legislator": {"website": "http://www.cardin.senate.gov/", "fax": "202-224-1651", "govtrack_id": "400064", "firstname": "Benjamin", "chamber": "senate", "middlename": "L.", "lastname": "Cardin", "congress_office": "509 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4524", "webform": "http://www.cardin.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorCardin", "nickname": "Ben", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Benjamin_Cardin", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenatorCardin", "birthdate": "1943-10-05", "bioguide_id": "C000141", "fec_id": "H6MD03177", "state": "MD", "crp_id": "N00001955", "official_rss": "", "facebook_id": "senatorbencardin", "party": "D", "email": "", "votesmart_id": "26888"}}, {"legislator": {"website": "http://cardoza.house.gov/", "fax": "202-225-0819", "govtrack_id": "400065", "firstname": "Dennis", "chamber": "house", "middlename": "A.", "lastname": "Cardoza", "congress_office": "2437 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6131", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/congressmancardoza", "nickname": "", "gender": "M", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dennis_Cardoza", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCardoza", "birthdate": "1959-03-31", "bioguide_id": "C001050", "fec_id": "H2CA18056", "state": "CA", "crp_id": "N00024874", "official_rss": "", "facebook_id": "RepDennisCardoza", "party": "D", "email": "", "votesmart_id": "9680"}}, {"legislator": {"website": "http://carnahan.house.gov/", "fax": "202-225-7452", "govtrack_id": "400638", "firstname": "John", "chamber": "house", "middlename": "Russell", "lastname": "Carnahan", "congress_office": "1710 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2671", "webform": "http://carnahan.house.gov/contact.shtml", "youtube_url": "http://www.youtube.com/congressmancarnahan", "nickname": "Russ", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Russell_Carnahan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCarnahan", "birthdate": "1958-07-10", "bioguide_id": "C001060", "fec_id": "H0MO00019", "state": "MO", "crp_id": "N00005181", "official_rss": "", "facebook_id": "congressmancarnahan", "party": "D", "email": "", "votesmart_id": "39948"}}, {"legislator": {"website": "http://johncarney.house.gov/", "fax": "202-225-2291", "govtrack_id": "412407", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Carney", "congress_office": "1429 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4165", "webform": "https://forms.house.gov/carney/webforms/email-me.shtml", "youtube_url": "http://www.youtube.com/user/RepJohnCarney", "nickname": "", "gender": "M", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Carney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "johncarneyde", "birthdate": "1956-05-20", "bioguide_id": "C001083", "fec_id": "H0DE01017", "state": "DE", "crp_id": "N00030736", "official_rss": "", "facebook_id": "24981118472", "party": "D", "email": "", "votesmart_id": "53658"}}, {"legislator": {"website": "http://www.carper.senate.gov", "fax": "202-228-2190", "govtrack_id": "300019", "firstname": "Thomas", "chamber": "senate", "middlename": "Richard", "lastname": "Carper", "congress_office": "513 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2441", "webform": "http://www.carper.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorcarper", "nickname": "Tom", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Thomas_Carper", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenatorCarper", "birthdate": "1947-01-23", "bioguide_id": "C000174", "fec_id": "S8DE00079", "state": "DE", "crp_id": "N00012508", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "22421"}}, {"legislator": {"website": "http://carson.house.gov/", "fax": "202-225-5633", "govtrack_id": "412258", "firstname": "Andre", "chamber": "house", "middlename": "D.", "lastname": "Carson", "congress_office": "425 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4011", "webform": "http://carson.house.gov/contact.me.shtml", "youtube_url": "http://www.youtube.com/RepAndreCarson", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Andre_Carson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAndreCarson", "birthdate": "1974-10-16", "bioguide_id": "C001072", "fec_id": "H8IN07184", "state": "IN", "crp_id": "N00029513", "official_rss": "", "facebook_id": "CongressmanAndreCarson", "party": "D", "email": "", "votesmart_id": "84917"}}, {"legislator": {"website": "http://carter.house.gov/", "fax": "202-225-5886", "govtrack_id": "400068", "firstname": "John", "chamber": "house", "middlename": "R.", "lastname": "Carter", "congress_office": "409 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3864", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/RepJohnCarter", "nickname": "", "gender": "M", "district": "31", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Carter", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JudgeCarter", "birthdate": "1941-11-06", "bioguide_id": "C001051", "fec_id": "H2TX31044", "state": "TX", "crp_id": "N00025095", "official_rss": "", "facebook_id": "judgecarter", "party": "R", "email": "", "votesmart_id": "49296"}}, {"legislator": {"website": "http://www.casey.senate.gov/", "fax": "202-228-0604", "govtrack_id": "412246", "firstname": "Robert", "chamber": "senate", "middlename": "P.", "lastname": "Casey", "congress_office": "393 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-6324", "webform": "http://www.casey.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorBobCasey", "nickname": "Bob", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Casey", "in_office": true, "senate_class": "I", "name_suffix": "Jr.", "twitter_id": "SenBobCasey", "birthdate": "1960-04-13", "bioguide_id": "C001070", "fec_id": "S6PA00217", "state": "PA", "crp_id": "N00027503", "official_rss": "", "facebook_id": "SenatorBobCasey", "party": "D", "email": "", "votesmart_id": "2541"}}, {"legislator": {"website": "http://cassidy.house.gov/", "fax": "202-225-7313", "govtrack_id": "412269", "firstname": "William", "chamber": "house", "middlename": "", "lastname": "Cassidy", "congress_office": "1535 Longworth Cannon House Office Building", "eventful_id": "", "phone": "202-225-3901", "webform": "https://forms.house.gov/cassidy/contact-form.shtml", "youtube_url": "http://www.youtube.com/repbillcassidy", "nickname": "Bill", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/William_Cassidy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1957-09-28", "bioguide_id": "C001075", "fec_id": "H8LA00017", "state": "LA", "crp_id": "N00030245", "official_rss": "", "facebook_id": "RepBillCassidy", "party": "R", "email": "", "votesmart_id": "69494"}}, {"legislator": {"website": "http://castor.house.gov/", "fax": "202-225-5652", "govtrack_id": "412195", "firstname": "Kathy", "chamber": "house", "middlename": "", "lastname": "Castor", "congress_office": "137 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3376", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/RepKathyCastor", "nickname": "", "gender": "F", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kathy_Castor", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1966-08-20", "bioguide_id": "C001066", "fec_id": "H6FL11126", "state": "FL", "crp_id": "N00027514", "official_rss": "", "facebook_id": "KathyCastor", "party": "D", "email": "", "votesmart_id": "53825"}}, {"legislator": {"website": "http://chabot.house.gov/", "fax": "202-225-3012", "govtrack_id": "400071", "firstname": "Steven", "chamber": "house", "middlename": "J.", "lastname": "Chabot", "congress_office": "2351 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2216", "webform": "", "youtube_url": "http://www.youtube.com/congressmanchabot", "nickname": "Steve", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_Chabot", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSteveChabot", "birthdate": "1953-01-22", "bioguide_id": "C000266", "fec_id": "H8OH01043", "state": "OH", "crp_id": "N00003689", "official_rss": "", "facebook_id": "69362317921", "party": "R", "email": "", "votesmart_id": "21790"}}, {"legislator": {"website": "http://chaffetz.house.gov/", "fax": "202-225-5629", "govtrack_id": "412270", "firstname": "Jason", "chamber": "house", "middlename": "", "lastname": "Chaffetz", "congress_office": "1032 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7751", "webform": "https://forms.house.gov/chaffetz/contact-form.shtml", "youtube_url": "http://www.youtube.com/JasonChaffetz", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jason_Chaffetz", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jasoninthehouse", "birthdate": "1967-03-26", "bioguide_id": "C001076", "fec_id": "H8UT03089", "state": "UT", "crp_id": "N00028958", "official_rss": "", "facebook_id": "212373730233", "party": "R", "email": "", "votesmart_id": "103482"}}, {"legislator": {"website": "http://www.chambliss.senate.gov", "fax": "202-224-0103", "govtrack_id": "300021", "firstname": "C. Saxby", "chamber": "senate", "middlename": "", "lastname": "Chambliss", "congress_office": "416 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3521", "webform": "http://www.chambliss.senate.gov/public/index.cfm?p=Email", "youtube_url": "http://www.youtube.com/SenatorChambliss", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/C._Saxby_Chambliss", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1943-11-10", "bioguide_id": "C000286", "fec_id": "S2GA00118", "state": "GA", "crp_id": "N00002685", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "22029"}}, {"legislator": {"website": "http://chandler.house.gov/", "fax": "202-225-2122", "govtrack_id": "400442", "firstname": "Albert", "chamber": "house", "middlename": "Ben", "lastname": "Chandler", "congress_office": "1504 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4706", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/user/RepChandler", "nickname": "Ben", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Albert_Chandler", "in_office": true, "senate_class": "", "name_suffix": "III", "twitter_id": "", "birthdate": "1959-09-12", "bioguide_id": "C001058", "fec_id": "H4KY06072", "state": "KY", "crp_id": "N00026591", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "1891"}}, {"legislator": {"website": "http://donnachristensen.house.gov/", "fax": "202-225-5517", "govtrack_id": "400073", "firstname": "Donna", "chamber": "house", "middlename": "", "lastname": "Christensen", "congress_office": "1510 Longworth House Office Building", "eventful_id": "", "phone": "202-225-1790", "webform": "http://www.house.gov/writerep/", "youtube_url": "http://www.youtube.com/delegatedonna", "nickname": "", "gender": "F", "district": "0", "title": "Del", "congresspedia_url": "http://www.opencongress.org/wiki/Donna_Christensen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DelegateDonna", "birthdate": "1945-09-19", "bioguide_id": "C000380", "fec_id": "H4VI00054", "state": "VI", "crp_id": "N00000133", "official_rss": "", "facebook_id": "138013351189", "party": "D", "email": "", "votesmart_id": "1032"}}, {"legislator": {"website": "http://chu.house.gov/", "fax": "202-225-5467", "govtrack_id": "412379", "firstname": "Judy", "chamber": "house", "middlename": "M.", "lastname": "Chu", "congress_office": "1520 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5464", "webform": "https://forms.house.gov/chu/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepJudyChu", "nickname": "", "gender": "F", "district": "32", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Judy_Chu", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJudyChu", "birthdate": "1953-07-07", "bioguide_id": "C001080", "fec_id": "H0CA32101", "state": "CA", "crp_id": "N00030600", "official_rss": "", "facebook_id": "RepJudyChu", "party": "D", "email": "", "votesmart_id": "16539"}}, {"legislator": {"website": "http://cicilline.house.gov/", "fax": "202- 225-3290", "govtrack_id": "412470", "firstname": "David", "chamber": "house", "middlename": "", "lastname": "Cicilline", "congress_office": "128 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4911", "webform": "", "youtube_url": "http://www.youtube.com/davidcicilline", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Cicilline", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1961-07-15", "bioguide_id": "C001084", "fec_id": "H0RI01073", "state": "RI", "crp_id": "N00032019", "official_rss": "", "facebook_id": "mayorcicilline", "party": "D", "email": "", "votesmart_id": "7349"}}, {"legislator": {"website": "http://hansenclarke.house.gov/", "fax": "202-225-5730", "govtrack_id": "412440", "firstname": "Hansen", "chamber": "house", "middlename": "", "lastname": "Clarke", "congress_office": "1319 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2261", "webform": "", "youtube_url": "http://www.youtube.com/rephansenclarke", "nickname": "", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Hansen_Clarke", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepHansenClarke", "birthdate": "1957-03-02", "bioguide_id": "C001085", "fec_id": "H0MI13398", "state": "MI", "crp_id": "N00031945", "official_rss": "", "facebook_id": "184181851603316", "party": "D", "email": "", "votesmart_id": "19913"}}, {"legislator": {"website": "http://clarke.house.gov/", "fax": "202-226-0112", "govtrack_id": "412221", "firstname": "Yvette", "chamber": "house", "middlename": "D.", "lastname": "Clarke", "congress_office": "1029 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6231", "webform": "http://clarke.house.gov/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/repyvetteclarke", "nickname": "", "gender": "F", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Yvette_Clarke", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "YvetteClarke", "birthdate": "1964-11-24", "bioguide_id": "C001067", "fec_id": "H4NY11138", "state": "NY", "crp_id": "N00026961", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "44741"}}, {"legislator": {"website": "http://lacyclay.house.gov/", "fax": "202-226-3717", "govtrack_id": "400074", "firstname": "William", "chamber": "house", "middlename": "Lacy", "lastname": "Clay", "congress_office": "2418 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2406", "webform": "http://lacyclay.house.gov/contact.htm", "youtube_url": "http://www.youtube.com/CongressmanClay", "nickname": "Lacy", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/William_Lacy_Clay", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1956-07-27", "bioguide_id": "C001049", "fec_id": "H0MO01066", "state": "MO", "crp_id": "N00012460", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "8967"}}, {"legislator": {"website": "http://www.house.gov/cleaver/", "fax": "202-225-4403", "govtrack_id": "400639", "firstname": "Emanuel", "chamber": "house", "middlename": "", "lastname": "Cleaver", "congress_office": "1433 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4535", "webform": "http://www.house.gov/cleaver/IMA/issue.htm", "youtube_url": "", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Emanuel_Cleaver", "in_office": true, "senate_class": "", "name_suffix": "II", "twitter_id": "repcleaver", "birthdate": "1944-10-26", "bioguide_id": "C001061", "fec_id": "H4MO05234", "state": "MO", "crp_id": "N00026790", "official_rss": "", "facebook_id": "emanuelcleaverii", "party": "D", "email": "", "votesmart_id": "39507"}}, {"legislator": {"website": "http://clyburn.house.gov/", "fax": "202-225-2313", "govtrack_id": "400075", "firstname": "James", "chamber": "house", "middlename": "E.", "lastname": "Clyburn", "congress_office": "2135 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3315", "webform": "http://clyburn.house.gov/contact.cfm", "youtube_url": "http://www.youtube.com/repjamesclyburn", "nickname": "Jim", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Clyburn", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "clyburn", "birthdate": "1940-07-21", "bioguide_id": "C000537", "fec_id": "H2SC02042", "state": "SC", "crp_id": "N00002408", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "27066"}}, {"legislator": {"website": "http://www.coats.senate.gov", "fax": "", "govtrack_id": "402675", "firstname": "Daniel", "chamber": "senate", "middlename": "", "lastname": "Coats", "congress_office": "493 Russell Senate Office Bui", "eventful_id": "", "phone": "202-224-5623", "webform": "http://www.coats.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorCoats", "nickname": "Dan", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Coats", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "sendancoats", "birthdate": "1943-05-16", "bioguide_id": "C000542", "fec_id": "S0IN00053", "state": "IN", "crp_id": "N00003845", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "53291"}}, {"legislator": {"website": "http://coble.house.gov/", "fax": "202-225-8611", "govtrack_id": "400076", "firstname": "John", "chamber": "house", "middlename": "Howard", "lastname": "Coble", "congress_office": "2188 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3065", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/CobleCongress", "nickname": "Howard", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Coble", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "HowardCoble", "birthdate": "1931-03-18", "bioguide_id": "C000556", "fec_id": "H4NC06011", "state": "NC", "crp_id": "N00002247", "official_rss": "", "facebook_id": "100000874093059", "party": "R", "email": "", "votesmart_id": "27001"}}, {"legislator": {"website": "http://www.coburn.senate.gov", "fax": "202-224-6008", "govtrack_id": "400576", "firstname": "Thomas", "chamber": "senate", "middlename": "Allen", "lastname": "Coburn", "congress_office": "172 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5754", "webform": "http://www.coburn.senate.gov/public/index.cfm/contactsenatorcoburn?p=ContactForm", "youtube_url": "http://www.youtube.com/SenatorCoburn", "nickname": "Tom", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Coburn", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "TomCoburn", "birthdate": "1948-03-14", "bioguide_id": "C000560", "fec_id": "S4OK00174", "state": "OK", "crp_id": "N00005601", "official_rss": "", "facebook_id": "teamcoburn", "party": "R", "email": "", "votesmart_id": "22085"}}, {"legislator": {"website": "http://www.cochran.senate.gov", "fax": "202-224-9450", "govtrack_id": "300023", "firstname": "Thad", "chamber": "senate", "middlename": "", "lastname": "Cochran", "congress_office": "113 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-5054", "webform": "http://www.cochran.senate.gov/email.html", "youtube_url": "", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Thad_Cochran", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1937-12-07", "bioguide_id": "C000567", "fec_id": "S8MS00055", "state": "MS", "crp_id": "N00003328", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "53312"}}, {"legislator": {"website": "http://coffman.house.gov/", "fax": "202-226-4623", "govtrack_id": "412271", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Coffman", "congress_office": "1222 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7882", "webform": "https://forms.house.gov/coffman/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongressmanCoffman", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Coffman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeCoffman", "birthdate": "1955-03-19", "bioguide_id": "C001077", "fec_id": "H2CO00019", "state": "CO", "crp_id": "N00024753", "official_rss": "", "facebook_id": "repmikecoffman", "party": "R", "email": "", "votesmart_id": "1535"}}, {"legislator": {"website": "http://cohen.house.gov/", "fax": "202-225-5663", "govtrack_id": "412236", "firstname": "Steve", "chamber": "house", "middlename": "", "lastname": "Cohen", "congress_office": "1005 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3265", "webform": "http://cohen.house.gov/index.php?option=com_email_form&Itemid=113", "youtube_url": "http://www.youtube.com/RepCohen", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_Cohen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repcohen", "birthdate": "1949-05-24", "bioguide_id": "C001068", "fec_id": "H6TN09068", "state": "TN", "crp_id": "N00003225", "official_rss": "", "facebook_id": "CongressmanSteveCohen", "party": "D", "email": "", "votesmart_id": "24340"}}, {"legislator": {"website": "http://www.cole.house.gov/", "fax": "202-225-3512", "govtrack_id": "400077", "firstname": "Tom", "chamber": "house", "middlename": "", "lastname": "Cole", "congress_office": "2458 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6165", "webform": "http://www.cole.house.gov/contact-tom.html", "youtube_url": "http://www.youtube.com/RepTomCole", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Cole", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1949-04-28", "bioguide_id": "C001053", "fec_id": "H2OK04055", "state": "OK", "crp_id": "N00025726", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "46034"}}, {"legislator": {"website": "http://www.collins.senate.gov", "fax": "202-224-2693", "govtrack_id": "300025", "firstname": "Susan", "chamber": "senate", "middlename": "M.", "lastname": "Collins", "congress_office": "413 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-2523", "webform": "http://www.collins.senate.gov/public/continue.cfm?FuseAction=ContactSenatorCollins.EmailIssue", "youtube_url": "http://www.youtube.com/SenatorSusanCollins", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Susan_Collins", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "senatorcollins", "birthdate": "1952-12-07", "bioguide_id": "C001035", "fec_id": "S6ME00159", "state": "ME", "crp_id": "N00000491", "official_rss": "", "facebook_id": "susancollins", "party": "R", "email": "", "votesmart_id": "379"}}, {"legislator": {"website": "http://conaway.house.gov/", "fax": "202-225-1783", "govtrack_id": "400655", "firstname": "K. Michael", "chamber": "house", "middlename": "", "lastname": "Conaway", "congress_office": "2430 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3605", "webform": "http://conaway.house.gov/Contact/default.aspx#email", "youtube_url": "http://www.youtube.com/mikeconaway11", "nickname": "Mike", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/K._Michael_Conaway", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "ConawayTX11", "birthdate": "1948-06-11", "bioguide_id": "C001062", "fec_id": "H4TX19136", "state": "TX", "crp_id": "N00026041", "official_rss": "", "facebook_id": "mike.conaway", "party": "R", "email": "", "votesmart_id": "49935"}}, {"legislator": {"website": "http://connolly.house.gov/", "fax": "202-225-3071", "govtrack_id": "412272", "firstname": "Gerald", "chamber": "house", "middlename": "E.", "lastname": "Connolly", "congress_office": "424 Cannon House Office Building", "eventful_id": "", "phone": "202-225-1492", "webform": "https://forms.house.gov/connolly/contact-form.shtml", "youtube_url": "http://www.youtube.com/repconnolly", "nickname": "Gerry", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gerald_Connolly", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "GerryConnolly", "birthdate": "1950-03-30", "bioguide_id": "C001078", "fec_id": "H8VA11062", "state": "VA", "crp_id": "N00029891", "official_rss": "", "facebook_id": "177164035838", "party": "D", "email": "", "votesmart_id": "95078"}}, {"legislator": {"website": "http://www.conrad.senate.gov", "fax": "202-224-7776", "govtrack_id": "300026", "firstname": "Kent", "chamber": "senate", "middlename": "", "lastname": "Conrad", "congress_office": "530 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2043", "webform": "http://www.conrad.senate.gov/contact/webform.cfm", "youtube_url": "http://www.youtube.com/SenatorConrad", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Kent_Conrad", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "", "birthdate": "1948-03-12", "bioguide_id": "C000705", "fec_id": "S6ND00058", "state": "ND", "crp_id": "N00004613", "official_rss": "", "facebook_id": "kentconrad", "party": "D", "email": "", "votesmart_id": "53331"}}, {"legislator": {"website": "http://conyers.house.gov/", "fax": "202-225-0072", "govtrack_id": "400080", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Conyers", "congress_office": "2426 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5126", "webform": "http://conyers.house.gov/index.cfm?FuseAction=Contact.OnlineContactForm", "youtube_url": "http://www.youtube.com/JCMI14", "nickname": "", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Conyers", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "repjohnconyers", "birthdate": "1929-05-16", "bioguide_id": "C000714", "fec_id": "H6MI01028", "state": "MI", "crp_id": "N00004029", "official_rss": "", "facebook_id": "CongressmanConyers", "party": "D", "email": "", "votesmart_id": "26904"}}, {"legislator": {"website": "http://www.coons.senate.gov/", "fax": "", "govtrack_id": "412390", "firstname": "Chris", "chamber": "senate", "middlename": "", "lastname": "Coons", "congress_office": "127a Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5042", "webform": "http://www.coons.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorchriscoons", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Chris_Coons", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenCoonsOffice", "birthdate": "1963-09-09", "bioguide_id": "C001088", "fec_id": "S0DE00092", "state": "DE", "crp_id": "N00031820", "official_rss": "", "facebook_id": "7209432197", "party": "D", "email": "", "votesmart_id": "122834"}}, {"legislator": {"website": "http://cooper.house.gov/", "fax": "202-226-1035", "govtrack_id": "400081", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Cooper", "congress_office": "1536 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4311", "webform": "http://www.cooper.house.gov/index.php?option=com_content&task=view&id=117&Itemid=61", "youtube_url": "http://www.youtube.com/RepJimCooper", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Cooper", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjimcooper", "birthdate": "1954-06-19", "bioguide_id": "C000754", "fec_id": "H2TN05131", "state": "TN", "crp_id": "N00003132", "official_rss": "", "facebook_id": "JimCooper", "party": "D", "email": "", "votesmart_id": "48891"}}, {"legislator": {"website": "http://www.corker.senate.gov/", "fax": "202-228-0566", "govtrack_id": "412248", "firstname": "Bob", "chamber": "senate", "middlename": "", "lastname": "Corker", "congress_office": "185 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-3344", "webform": "http://www.corker.senate.gov/public/index.cfm?p=ContactMe", "youtube_url": "http://www.youtube.com/SenatorCorker", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Bob_Corker", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenBobCorker", "birthdate": "1952-08-24", "bioguide_id": "C001071", "fec_id": "S6TN00216", "state": "TN", "crp_id": "N00027441", "official_rss": "", "facebook_id": "bobcorker", "party": "R", "email": "", "votesmart_id": "65905"}}, {"legislator": {"website": "http://www.cornyn.senate.gov/", "fax": "202-228-2856", "govtrack_id": "300027", "firstname": "John", "chamber": "senate", "middlename": "", "lastname": "Cornyn", "congress_office": "517 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2934", "webform": "http://www.cornyn.senate.gov/public/index.cfm?p=ContactForm", "youtube_url": "http://www.youtube.com/senjohncornyn", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Cornyn", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "JohnCornyn", "birthdate": "1952-02-02", "bioguide_id": "C001056", "fec_id": "S2TX00106", "state": "TX", "crp_id": "N00024852", "official_rss": "", "facebook_id": "Sen.JohnCornyn", "party": "R", "email": "", "votesmart_id": "15375"}}, {"legislator": {"website": "http://www.costa.house.gov/", "fax": "202-225-9308", "govtrack_id": "400618", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Costa", "congress_office": "1314 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3341", "webform": "http://www.house.gov/formcosta/issue.htm", "youtube_url": "http://www.youtube.com/RepJimCostaCA20", "nickname": "", "gender": "M", "district": "20", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Costa", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-04-13", "bioguide_id": "C001059", "fec_id": "H4CA20082", "state": "CA", "crp_id": "N00026341", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "3577"}}, {"legislator": {"website": "http://costello.house.gov/", "fax": "202-225-0285", "govtrack_id": "400082", "firstname": "Jerry", "chamber": "house", "middlename": "F.", "lastname": "Costello", "congress_office": "2408 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5661", "webform": "http://costello.house.gov/IMA/issue_subscribe.shtml", "youtube_url": "http://www.youtube.com/repjerrycostello", "nickname": "", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jerry_Costello", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jerrycostello", "birthdate": "1949-09-25", "bioguide_id": "C000794", "fec_id": "H8IL21021", "state": "IL", "crp_id": "N00004956", "official_rss": "", "facebook_id": "115552205154936", "party": "D", "email": "", "votesmart_id": "26849"}}, {"legislator": {"website": "http://courtney.house.gov/", "fax": "202-225-4977", "govtrack_id": "412193", "firstname": "Joseph", "chamber": "house", "middlename": "D.", "lastname": "Courtney", "congress_office": "215 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2076", "webform": "http://courtney.house.gov/email/", "youtube_url": "http://www.youtube.com/RepCourtney", "nickname": "Joe", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joseph_Courtney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjoecourtney", "birthdate": "1953-04-06", "bioguide_id": "C001069", "fec_id": "H2CT02112", "state": "CT", "crp_id": "N00024842", "official_rss": "", "facebook_id": "joecourtney", "party": "D", "email": "", "votesmart_id": "30333"}}, {"legislator": {"website": "http://www.crapo.senate.gov", "fax": "202-228-1375", "govtrack_id": "300030", "firstname": "Michael", "chamber": "senate", "middlename": "D.", "lastname": "Crapo", "congress_office": "239 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-6142", "webform": "http://www.crapo.senate.gov/contact/email.cfm", "youtube_url": "http://www.youtube.com/senatorcrapo", "nickname": "Mike", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Crapo", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "", "birthdate": "1951-05-20", "bioguide_id": "C000880", "fec_id": "S8ID00027", "state": "ID", "crp_id": "N00006267", "official_rss": "", "facebook_id": "mikecrapo", "party": "R", "email": "", "votesmart_id": "26830"}}, {"legislator": {"website": "http://cravaack.house.gov/", "fax": "202- 225-6211", "govtrack_id": "412441", "firstname": "Chip", "chamber": "house", "middlename": "", "lastname": "Cravaack", "congress_office": "508 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6211", "webform": "", "youtube_url": "http://www.youtube.com/RepChipCravaack", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Chip_Cravaack", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepChipCravaack", "birthdate": "1959-12-29", "bioguide_id": "C001086", "fec_id": "H0MN08115", "state": "MN", "crp_id": "N00031623", "official_rss": "", "facebook_id": "RepChipCravaack", "party": "R", "email": "", "votesmart_id": "122953"}}, {"legislator": {"website": "http://crawford.house.gov/", "fax": "202-225-5602", "govtrack_id": "412400", "firstname": "Rick", "chamber": "house", "middlename": "", "lastname": "Crawford", "congress_office": "1408 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4076", "webform": "", "youtube_url": "http://www.youtube.com/RepRickCrawford", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rick_Crawford", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRickCrawford", "birthdate": "1966-01-22", "bioguide_id": "C001087", "fec_id": "H0AR01083", "state": "AR", "crp_id": "N00030770", "official_rss": "", "facebook_id": "RepRickCrawford", "party": "R", "email": "", "votesmart_id": "119208"}}, {"legislator": {"website": "http://crenshaw.house.gov/", "fax": "202-225-2504", "govtrack_id": "400086", "firstname": "Ander", "chamber": "house", "middlename": "", "lastname": "Crenshaw", "congress_office": "440 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2501", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/RepAnderCrenshaw", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ander_Crenshaw", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "AnderCrenshaw", "birthdate": "1944-09-01", "bioguide_id": "C001045", "fec_id": "H0FL04066", "state": "FL", "crp_id": "N00012739", "official_rss": "", "facebook_id": "200388204657", "party": "R", "email": "", "votesmart_id": "31130"}}, {"legislator": {"website": "http://critz.house.gov/", "fax": "202-225-5974", "govtrack_id": "412386", "firstname": "Mark", "chamber": "house", "middlename": "S.", "lastname": "Critz", "congress_office": "1022 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2065", "webform": "https://critz.house.gov/contact/email-me.shtml", "youtube_url": "http://www.youtube.com/RepMarkCritz", "nickname": "", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Critz", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMarkCritz", "birthdate": "1962-01-05", "bioguide_id": "C001081", "fec_id": "H0PA12132", "state": "PA", "crp_id": "N00032014", "official_rss": "", "facebook_id": "124105914288036", "party": "D", "email": "", "votesmart_id": "119481"}}, {"legislator": {"website": "http://crowley.house.gov/", "fax": "202-225-1909", "govtrack_id": "400087", "firstname": "Joseph", "chamber": "house", "middlename": "", "lastname": "Crowley", "congress_office": "2404 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3965", "webform": "https://forms.house.gov/crowley/contact.shtml", "youtube_url": "http://www.youtube.com/RepJoeCrowley", "nickname": "Joe", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joseph_Crowley", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjoecrowley", "birthdate": "1962-03-16", "bioguide_id": "C001038", "fec_id": "H8NY07046", "state": "NY", "crp_id": "N00001127", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "4295"}}, {"legislator": {"website": "http://cuellar.house.gov/", "fax": "202-225-1641", "govtrack_id": "400657", "firstname": "Henry", "chamber": "house", "middlename": "", "lastname": "Cuellar", "congress_office": "2463 Rayburn Office Building", "eventful_id": "", "phone": "202-225-1640", "webform": "http://cuellar.house.gov/Contact/SendMeAnEmail.htm", "youtube_url": "http://www.youtube.com/henrycuellar", "nickname": "", "gender": "M", "district": "28", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Henry_Cuellar", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCuellar", "birthdate": "1955-09-19", "bioguide_id": "C001063", "fec_id": "H2TX23082", "state": "TX", "crp_id": "N00024978", "official_rss": "", "facebook_id": "152569121550", "party": "D", "email": "", "votesmart_id": "5486"}}, {"legislator": {"website": "http://culberson.house.gov/", "fax": "202-225-4381", "govtrack_id": "400089", "firstname": "John", "chamber": "house", "middlename": "A.", "lastname": "Culberson", "congress_office": "2352 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2571", "webform": "http://www.culberson.house.gov/contactinfo.aspx", "youtube_url": "http://www.youtube.com/JohnCulbersonTX07", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Culberson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "congculberson", "birthdate": "1956-08-24", "bioguide_id": "C001048", "fec_id": "H0TX07055", "state": "TX", "crp_id": "N00009738", "official_rss": "", "facebook_id": "CongressmanCulberson", "party": "R", "email": "", "votesmart_id": "5488"}}, {"legislator": {"website": "http://cummings.house.gov/", "fax": "202-225-3178", "govtrack_id": "400090", "firstname": "Elijah", "chamber": "house", "middlename": "E.", "lastname": "Cummings", "congress_office": "2235 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4741", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/ElijahECummings", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Elijah_Cummings", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1951-01-18", "bioguide_id": "C000984", "fec_id": "H6MD07160", "state": "MD", "crp_id": "N00001971", "official_rss": "", "facebook_id": "elijahcummings", "party": "D", "email": "", "votesmart_id": "345"}}, {"legislator": {"website": "http://www.davis.house.gov/", "fax": "202-225-5641", "govtrack_id": "400093", "firstname": "Danny", "chamber": "house", "middlename": "K.", "lastname": "Davis", "congress_office": "2159 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5006", "webform": "https://forms.house.gov/davis/webforms/issue_subscribe.htm", "youtube_url": "", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Danny_Davis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1941-09-06", "bioguide_id": "D000096", "fec_id": "H4IL07037", "state": "IL", "crp_id": "N00004884", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "233"}}, {"legislator": {"website": "http://geoffdavis.house.gov/", "fax": "202-225-0003", "govtrack_id": "400633", "firstname": "Geoff", "chamber": "house", "middlename": "", "lastname": "Davis", "congress_office": "1119 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3465", "webform": "http://geoffdavis.house.gov/Contact.aspx", "youtube_url": "http://www.youtube.com/CongressmanDavis", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Geoff_Davis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGeoffDavis", "birthdate": "1958-10-26", "bioguide_id": "D000603", "fec_id": "H2KY04071", "state": "KY", "crp_id": "N00024862", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "35212"}}, {"legislator": {"website": "http://www.house.gov/susandavis/", "fax": "202-225-2948", "govtrack_id": "400097", "firstname": "Susan", "chamber": "house", "middlename": "A.", "lastname": "Davis", "congress_office": "1526 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2040", "webform": "http://www.house.gov/susandavis/contact.shtml", "youtube_url": "", "nickname": "", "gender": "F", "district": "53", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Susan_Davis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1944-04-13", "bioguide_id": "D000598", "fec_id": "H0CA49055", "state": "CA", "crp_id": "N00009604", "official_rss": "", "facebook_id": "103767526332478", "party": "D", "email": "", "votesmart_id": "8168"}}, {"legislator": {"website": "http://www.defazio.house.gov/", "fax": "202-225-0032", "govtrack_id": "400100", "firstname": "Peter", "chamber": "house", "middlename": "A.", "lastname": "DeFazio", "congress_office": "2134 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6416", "webform": "http://www.house.gov/formdefazio/contact.html", "youtube_url": "http://www.youtube.com/PeterDeFazio", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_DeFazio", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepPeterDeFazio", "birthdate": "1947-05-27", "bioguide_id": "D000191", "fec_id": "H6OR04047", "state": "OR", "crp_id": "N00007781", "official_rss": "", "facebook_id": "94324364811", "party": "D", "email": "", "votesmart_id": "27037"}}, {"legislator": {"website": "http://degette.house.gov/", "fax": "202-225-5657", "govtrack_id": "400101", "firstname": "Diana", "chamber": "house", "middlename": "L.", "lastname": "DeGette", "congress_office": "2335 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4431", "webform": "http://www.house.gov/formdegette/zip_auth.htm", "youtube_url": "http://www.youtube.com/RepDianaDeGette", "nickname": "", "gender": "F", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Diana_DeGette", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDianaDeGette", "birthdate": "1957-07-29", "bioguide_id": "D000197", "fec_id": "H6CO01141", "state": "CO", "crp_id": "N00006134", "official_rss": "", "facebook_id": "DianaDeGette", "party": "D", "email": "", "votesmart_id": "561"}}, {"legislator": {"website": "http://delauro.house.gov/", "fax": "202-225-4890", "govtrack_id": "400103", "firstname": "Rosa", "chamber": "house", "middlename": "L.", "lastname": "DeLauro", "congress_office": "2413 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3661", "webform": "http://delauro.house.gov/contact_form_email.cfm", "youtube_url": "http://www.youtube.com/RosaDeLauro", "nickname": "", "gender": "F", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rosa_DeLauro", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "rosadelauro", "birthdate": "1943-03-02", "bioguide_id": "D000216", "fec_id": "H0CT03072", "state": "CT", "crp_id": "N00000615", "official_rss": "", "facebook_id": "RosaDelauro", "party": "D", "email": "", "votesmart_id": "26788"}}, {"legislator": {"website": "http://www.demint.senate.gov", "fax": "202-228-5143", "govtrack_id": "400105", "firstname": "Jim", "chamber": "senate", "middlename": "W.", "lastname": "DeMint", "congress_office": "167 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-6121", "webform": "http://www.demint.senate.gov/public/index.cfm?p=ContactInformation", "youtube_url": "http://www.youtube.com/SenJimDeMint", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_DeMint", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "JimDeMint", "birthdate": "1951-09-02", "bioguide_id": "D000595", "fec_id": "S4SC00083", "state": "SC", "crp_id": "N00002472", "official_rss": "", "facebook_id": "senatordemint", "party": "R", "email": "", "votesmart_id": "25026"}}, {"legislator": {"website": "http://denham.house.gov/", "fax": "202-225-3402", "govtrack_id": "412403", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Denham", "congress_office": "1605 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4540", "webform": "", "youtube_url": "http://www.youtube.com/user/jeffdenham19", "nickname": "", "gender": "M", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Denham", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJeffDenham", "birthdate": "1967-07-29", "bioguide_id": "D000612", "fec_id": "H0CA19173", "state": "CA", "crp_id": "N00031593", "official_rss": "", "facebook_id": "252091262189", "party": "R", "email": "", "votesmart_id": "28769"}}, {"legislator": {"website": "http://dent.house.gov/", "fax": "202-226-0778", "govtrack_id": "400648", "firstname": "Charles", "chamber": "house", "middlename": "W.", "lastname": "Dent", "congress_office": "1009 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6411", "webform": "http://dent.house.gov/verifyemail.shtml", "youtube_url": "http://www.youtube.com/CongressmanDent", "nickname": "", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Dent", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1960-05-24", "bioguide_id": "D000604", "fec_id": "H4PA15087", "state": "PA", "crp_id": "N00026171", "official_rss": "", "facebook_id": "6770045221", "party": "R", "email": "", "votesmart_id": "9121"}}, {"legislator": {"website": "http://desjarlais.house.gov/", "fax": "202-226-5172", "govtrack_id": "412477", "firstname": "Scott", "chamber": "house", "middlename": "", "lastname": "DesJarlais", "congress_office": "413 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6831", "webform": "", "youtube_url": "http://www.youtube.com/ScottDesJarlaisTN04", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Scott_Desjarlais", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "tndesjarlais", "birthdate": "1964-02-21", "bioguide_id": "D000616", "fec_id": "H0TN04195", "state": "TN", "crp_id": "N00030957", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "123473"}}, {"legislator": {"website": "http://teddeutch.house.gov/", "fax": "202-225-5974", "govtrack_id": "412385", "firstname": "Ted", "chamber": "house", "middlename": "", "lastname": "Deutch", "congress_office": "1024 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3001", "webform": "https://teddeutch.house.gov/Forms/WriteYourRep/default.aspx", "youtube_url": "http://www.youtube.com/user/congressmanteddeutch", "nickname": "", "gender": "M", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ted_Deutch", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repteddeutch", "birthdate": "1966-05-07", "bioguide_id": "D000610", "fec_id": "H0FL19080", "state": "FL", "crp_id": "N00031317", "official_rss": "", "facebook_id": "112179098816942", "party": "D", "email": "", "votesmart_id": "67151"}}, {"legislator": {"website": "http://mariodiazbalart.house.gov/", "fax": "202-225-8576", "govtrack_id": "400108", "firstname": "Mario", "chamber": "house", "middlename": "", "lastname": "Diaz-Balart", "congress_office": "436 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4211", "webform": "Http://mariodiaz-balart.house.gov//index.cfm?sectionid=11", "youtube_url": "http://www.youtube.com/MarioDiazBalart", "nickname": "", "gender": "M", "district": "21", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mario_Diaz-Balart", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MarioDB", "birthdate": "1961-09-25", "bioguide_id": "D000600", "fec_id": "H2FL25018", "state": "FL", "crp_id": "N00025337", "official_rss": "", "facebook_id": "119538428117878", "party": "R", "email": "", "votesmart_id": "24312"}}, {"legislator": {"website": "http://www.house.gov/dicks/", "fax": "202-226-1176", "govtrack_id": "400109", "firstname": "Norman", "chamber": "house", "middlename": "D.", "lastname": "Dicks", "congress_office": "2467 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5916", "webform": "http://www.house.gov/dicks/email.shtml", "youtube_url": "http://www.youtube.com/RepNormDicks", "nickname": "Norm", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Norman_Dicks", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepNormDicks", "birthdate": "1940-12-16", "bioguide_id": "D000327", "fec_id": "H6WA06021", "state": "WA", "crp_id": "N00007918", "official_rss": "", "facebook_id": "NormDicks", "party": "D", "email": "", "votesmart_id": "27127"}}, {"legislator": {"website": "http://www.house.gov/dingell/", "fax": "202-226-0371", "govtrack_id": "400110", "firstname": "John", "chamber": "house", "middlename": "D.", "lastname": "Dingell", "congress_office": "2328 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4071", "webform": "https://forms.house.gov/wyr/welcome.shtml", "youtube_url": "http://www.youtube.com/DingellMI15", "nickname": "", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Dingell", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "john_dingell", "birthdate": "1926-07-08", "bioguide_id": "D000355", "fec_id": "H6MI16034", "state": "MI", "crp_id": "N00001783", "official_rss": "", "facebook_id": "johndingell", "party": "D", "email": "", "votesmart_id": "26917"}}, {"legislator": {"website": "http://doggett.house.gov/", "fax": "202-225-3073", "govtrack_id": "400111", "firstname": "Lloyd", "chamber": "house", "middlename": "A.", "lastname": "Doggett", "congress_office": "201 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4865", "webform": "http://www.house.gov/doggett/doggett_ima/doggett_get_address.shtml", "youtube_url": "http://www.youtube.com/doggett", "nickname": "", "gender": "M", "district": "25", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lloyd_Doggett", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLloydDoggett", "birthdate": "1946-10-06", "bioguide_id": "D000399", "fec_id": "H4TX10028", "state": "TX", "crp_id": "N00006023", "official_rss": "", "facebook_id": "lloyddoggett", "party": "D", "email": "", "votesmart_id": "21689"}}, {"legislator": {"website": "http://dold.house.gov/", "fax": "202-225-0837", "govtrack_id": "412420", "firstname": "Robert", "chamber": "house", "middlename": "", "lastname": "Dold", "congress_office": "212 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4835", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Dold", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "RepDold", "birthdate": "1969-06-23", "bioguide_id": "D000613", "fec_id": "H0IL10302", "state": "IL", "crp_id": "N00031103", "official_rss": "", "facebook_id": "131680867001", "party": "R", "email": "", "votesmart_id": "116548"}}, {"legislator": {"website": "http://donnelly.house.gov/", "fax": "202-225-6798", "govtrack_id": "412205", "firstname": "Joe", "chamber": "house", "middlename": "", "lastname": "Donnelly", "congress_office": "1530 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3915", "webform": "http://donnelly.house.gov/issue_subscribe.shtml", "youtube_url": "http://www.youtube.com/RepJoeDonnelly", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Donnelly", "in_office": true, "senate_class": "", "name_suffix": "Sr.", "twitter_id": "RepDonnelly", "birthdate": "1955-09-28", "bioguide_id": "D000607", "fec_id": "H4IN02101", "state": "IN", "crp_id": "N00026586", "official_rss": "", "facebook_id": "168059529893610", "party": "D", "email": "", "votesmart_id": "34212"}}, {"legislator": {"website": "http://doyle.house.gov/", "fax": "202-225-3084", "govtrack_id": "400114", "firstname": "Michael", "chamber": "house", "middlename": "F.", "lastname": "Doyle", "congress_office": "401 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2135", "webform": "http://www.house.gov/doyle/email_mike.shtml", "youtube_url": "http://www.youtube.com/CongressmanDoyle", "nickname": "Mike", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Doyle", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "USRepMikeDoyle", "birthdate": "1953-08-05", "bioguide_id": "D000482", "fec_id": "H4PA18131", "state": "PA", "crp_id": "N00001373", "official_rss": "", "facebook_id": "usrepmikedoyle", "party": "D", "email": "", "votesmart_id": "21853"}}, {"legislator": {"website": "http://dreier.house.gov/", "fax": "202-225-7018", "govtrack_id": "400115", "firstname": "David", "chamber": "house", "middlename": "T.", "lastname": "Dreier", "congress_office": "233 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2305", "webform": "http://doyle.house.gov/email_mike.shtml", "youtube_url": "http://www.youtube.com/RepDavidDreier", "nickname": "", "gender": "M", "district": "26", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Dreier", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-07-05", "bioguide_id": "D000492", "fec_id": "H8CA35032", "state": "CA", "crp_id": "N00006932", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "26765"}}, {"legislator": {"website": "http://duffy.house.gov/", "fax": "", "govtrack_id": "412488", "firstname": "Sean", "chamber": "house", "middlename": "", "lastname": "Duffy", "congress_office": "1208 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3365", "webform": "", "youtube_url": "http://www.youtube.com/user/RepSeanDuffy", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sean_Duffy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSeanDuffy", "birthdate": "1971-10-03", "bioguide_id": "D000614", "fec_id": "H0WI07051", "state": "WI", "crp_id": "N00030967", "official_rss": "", "facebook_id": "RepSeanDuffy", "party": "R", "email": "", "votesmart_id": "126238"}}, {"legislator": {"website": "http://jeffduncan.house.gov/", "fax": "202- 225-3216", "govtrack_id": "412472", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Duncan", "congress_office": "116 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3365", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Duncan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJeffDuncan", "birthdate": "1966-01-07", "bioguide_id": "D000615", "fec_id": "H0SC03077", "state": "SC", "crp_id": "N00030752", "official_rss": "", "facebook_id": "187268144624279", "party": "R", "email": "", "votesmart_id": "47967"}}, {"legislator": {"website": "http://duncan.house.gov/", "fax": "202-225-6440", "govtrack_id": "400116", "firstname": "John", "chamber": "house", "middlename": "J.", "lastname": "Duncan", "congress_office": "2207 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5435", "webform": "http://www.house.gov/duncan/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/repjohnduncan", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Duncan", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1947-07-21", "bioguide_id": "D000533", "fec_id": "H8TN02069", "state": "TN", "crp_id": "N00003209", "official_rss": "", "facebook_id": "CongressmanDuncan", "party": "R", "email": "", "votesmart_id": "27069"}}, {"legislator": {"website": "http://www.durbin.senate.gov", "fax": "202-228-0400", "govtrack_id": "300038", "firstname": "Richard", "chamber": "senate", "middlename": "J.", "lastname": "Durbin", "congress_office": "711 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2152", "webform": "http://www.durbin.senate.gov/public/index.cfm/contact", "youtube_url": "http://www.youtube.com/SenatorDurbin", "nickname": "Dick", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Durbin", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenatorDurbin", "birthdate": "1944-11-21", "bioguide_id": "D000563", "fec_id": "S6IL00151", "state": "IL", "crp_id": "N00004981", "official_rss": "", "facebook_id": "dickdurbin", "party": "D", "email": "", "votesmart_id": "26847"}}, {"legislator": {"website": "http://donnaedwards.house.gov/", "fax": "202-225-8714", "govtrack_id": "412263", "firstname": "Donna", "chamber": "house", "middlename": "", "lastname": "Edwards", "congress_office": "318 Cannon House Office Building", "eventful_id": "", "phone": "202-225-8699", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepDonnaFEdwards", "nickname": "", "gender": "F", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Donna_Edwards", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repdonnaedwards", "birthdate": "1958-06-28", "bioguide_id": "E000290", "fec_id": "H6MD04183", "state": "MD", "crp_id": "N00028249", "official_rss": "", "facebook_id": "107297211756", "party": "D", "email": "", "votesmart_id": "65085"}}, {"legislator": {"website": "http://ellison.house.gov", "fax": "202-225-4886", "govtrack_id": "412215", "firstname": "Keith", "chamber": "house", "middlename": "M.", "lastname": "Ellison", "congress_office": "1027 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4755", "webform": "http://ellison.house.gov/index.php?option=com_content&task=view&id=87", "youtube_url": "http://www.youtube.com/RepKeithEllison", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Keith_Ellison", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "keithellison", "birthdate": "1963-08-04", "bioguide_id": "E000288", "fec_id": "H6MN05183", "state": "MN", "crp_id": "N00028257", "official_rss": "", "facebook_id": "Keith.Ellison", "party": "D", "email": "", "votesmart_id": "38982"}}, {"legislator": {"website": "http://ellmers.house.gov/", "fax": "202- 225-5662 ", "govtrack_id": "412457", "firstname": "Renee", "chamber": "house", "middlename": "", "lastname": "Ellmers", "congress_office": "1533 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4531", "webform": "", "youtube_url": "http://www.youtube.com/repreneeellmers", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Renee_Ellmers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepReneeEllmers", "birthdate": "1964-02-09", "bioguide_id": "E000291", "fec_id": "H0NC02059", "state": "NC", "crp_id": "N00031513", "official_rss": "", "facebook_id": "reneeellmers", "party": "R", "email": "", "votesmart_id": "120897"}}, {"legislator": {"website": "http://house.gov/emerson/", "fax": "202-226-0326", "govtrack_id": "400121", "firstname": "Jo Ann", "chamber": "house", "middlename": "", "lastname": "Emerson", "congress_office": "2230 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4404", "webform": "http://www.house.gov/emerson/contact/", "youtube_url": "http://www.youtube.com/USRepJoAnnEmerson", "nickname": "", "gender": "F", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jo_Ann_Emerson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1950-09-16", "bioguide_id": "E000172", "fec_id": "H6MO08084", "state": "MO", "crp_id": "N00005090", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "903"}}, {"legislator": {"website": "http://engel.house.gov/", "fax": "202-225-5513", "govtrack_id": "400122", "firstname": "Eliot", "chamber": "house", "middlename": "L.", "lastname": "Engel", "congress_office": "2161 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2464", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/Engel2161", "nickname": "", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Eliot_Engel", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepEliotEngel", "birthdate": "1947-02-18", "bioguide_id": "E000179", "fec_id": "H8NY19058", "state": "NY", "crp_id": "N00001003", "official_rss": "", "facebook_id": "103355984852", "party": "D", "email": "", "votesmart_id": "26972"}}, {"legislator": {"website": "http://www.enzi.senate.gov", "fax": "202-228-0359", "govtrack_id": "300041", "firstname": "Michael", "chamber": "senate", "middlename": "B.", "lastname": "Enzi", "congress_office": "379a Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3424", "webform": "http://www.enzi.senate.gov/public/index.cfm/contact?p=e-mail-senator-enzi", "youtube_url": "http://www.youtube.com/SenatorEnzi", "nickname": "Mike", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Enzi", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1944-02-01", "bioguide_id": "E000285", "fec_id": "S6WY00126", "state": "WY", "crp_id": "N00006249", "official_rss": "", "facebook_id": "mikeenzi", "party": "R", "email": "", "votesmart_id": "558"}}, {"legislator": {"website": "http://eshoo.house.gov/", "fax": "202-225-8890", "govtrack_id": "400124", "firstname": "Anna", "chamber": "house", "middlename": "G.", "lastname": "Eshoo", "congress_office": "205 Cannon House Office Building", "eventful_id": "", "phone": "202-225-8104", "webform": "https://forms.house.gov/eshoo/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepAnnaEshoo", "nickname": "", "gender": "F", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Anna_Eshoo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAnnaEshoo", "birthdate": "1942-12-13", "bioguide_id": "E000215", "fec_id": "H8CA12098", "state": "CA", "crp_id": "N00007335", "official_rss": "", "facebook_id": "RepAnnaEshoo", "party": "D", "email": "", "votesmart_id": "26741"}}, {"legislator": {"website": "http://www.house.gov/faleomavaega/", "fax": "202-225-8757", "govtrack_id": "400128", "firstname": "Eni", "chamber": "house", "middlename": "", "lastname": "Faleomavaega", "congress_office": "2422 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8577", "webform": "http://www.house.gov/writerep", "youtube_url": "", "nickname": "", "gender": "M", "district": "0", "title": "Del", "congresspedia_url": "http://www.opencongress.org/wiki/Eni_Faleomavaega", "in_office": true, "senate_class": "", "name_suffix": "Jr", "twitter_id": "", "birthdate": "1943-08-15", "bioguide_id": "F000010", "fec_id": "H0AS00018", "state": "AS", "crp_id": "N00007632", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "774"}}, {"legislator": {"website": "http://farenthold.house.gov/", "fax": "202-226-1134", "govtrack_id": "412482", "firstname": "Blake", "chamber": "house", "middlename": "", "lastname": "Farenthold", "congress_office": "2110 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-7742", "webform": "", "youtube_url": "http://www.youtube.com/BlakeFarenthold", "nickname": "", "gender": "M", "district": "27", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Blake_Farenthold", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "farenthold", "birthdate": "1961-12-12", "bioguide_id": "F000460", "fec_id": "H0TX27061", "state": "TX", "crp_id": "N00031672", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "116919"}}, {"legislator": {"website": "http://farr.house.gov/", "fax": "202-225-6791", "govtrack_id": "400129", "firstname": "Sam", "chamber": "house", "middlename": "", "lastname": "Farr", "congress_office": "1126 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2861", "webform": "http://www.farr.house.gov/index.php?option=com_content&task=view&id=202", "youtube_url": "http://www.youtube.com/CongressmanSamFarr", "nickname": "", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sam_Farr", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSamFarr", "birthdate": "1941-07-04", "bioguide_id": "F000030", "fec_id": "H4CA17021", "state": "CA", "crp_id": "N00007312", "official_rss": "", "facebook_id": "SamFarr", "party": "D", "email": "", "votesmart_id": "26745"}}, {"legislator": {"website": "http://fattah.house.gov/", "fax": "202-225-5392", "govtrack_id": "400130", "firstname": "Chaka", "chamber": "house", "middlename": "", "lastname": "Fattah", "congress_office": "2301 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4001", "webform": "http://fattah.house.gov/?sectionid=8&sectiontree=8", "youtube_url": "http://www.youtube.com/user/ChakaFattah", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Chaka_Fattah", "in_office": true, "senate_class": "", "name_suffix": "Sr.", "twitter_id": "chakafattah", "birthdate": "1956-11-21", "bioguide_id": "F000043", "fec_id": "H2PA02055", "state": "PA", "crp_id": "N00001746", "official_rss": "", "facebook_id": "repfattah", "party": "D", "email": "", "votesmart_id": "21850"}}, {"legislator": {"website": "http://www.feinstein.senate.gov", "fax": "202-228-3954", "govtrack_id": "300043", "firstname": "Dianne", "chamber": "senate", "middlename": "", "lastname": "Feinstein", "congress_office": "331 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3841", "webform": "http://www.feinstein.senate.gov/public/index.cfm/e-mail-me", "youtube_url": "http://www.youtube.com/SenatorFeinstein", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Dianne_Feinstein", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "senfeinstein", "birthdate": "1933-06-22", "bioguide_id": "F000062", "fec_id": "S0CA00199", "state": "CA", "crp_id": "N00007364", "official_rss": "", "facebook_id": "DianneFeinstein", "party": "D", "email": "", "votesmart_id": "53273"}}, {"legislator": {"website": "http://www.house.gov/filner/", "fax": "202-225-9073", "govtrack_id": "400133", "firstname": "Bob", "chamber": "house", "middlename": "", "lastname": "Filner", "congress_office": "2428 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8045", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/user/bobfilnerca51", "nickname": "", "gender": "M", "district": "51", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bob_Filner", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CongBobFilner", "birthdate": "1942-09-04", "bioguide_id": "F000116", "fec_id": "H2CA50034", "state": "CA", "crp_id": "N00007033", "official_rss": "", "facebook_id": "bobfilner", "party": "D", "email": "", "votesmart_id": "26774"}}, {"legislator": {"website": "http://fincher.house.gov/", "fax": "202-225-1765", "govtrack_id": "412479", "firstname": "Stephen", "chamber": "house", "middlename": "", "lastname": "Fincher", "congress_office": "1118 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4714", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Stephen_Fincher", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepFincherTN08", "birthdate": "1973-02-07", "bioguide_id": "F000458", "fec_id": "H0TN08246", "state": "TN", "crp_id": "N00031141", "official_rss": "", "facebook_id": "FincherforCongress", "party": "R", "email": "", "votesmart_id": "124659"}}, {"legislator": {"website": "http://fitzpatrick.house.gov/", "fax": "202- 225-9511", "govtrack_id": "400646", "firstname": "Michael", "chamber": "house", "middlename": "", "lastname": "Fitzpatrick", "congress_office": "1224 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4276", "webform": "", "youtube_url": "", "nickname": "Mike", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Fitzpatrick", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepFitzpatrick", "birthdate": "1963-06-28", "bioguide_id": "F000451", "fec_id": "H4PA08074", "state": "PA", "crp_id": "N00027229", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "46971"}}, {"legislator": {"website": "http://flake.house.gov/", "fax": "202-226-4386", "govtrack_id": "400134", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Flake", "congress_office": "240 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2635", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/flakeoffice", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Flake", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JeffFlake", "birthdate": "1962-12-31", "bioguide_id": "F000444", "fec_id": "H0AZ01184", "state": "AZ", "crp_id": "N00009573", "official_rss": "", "facebook_id": "congressmanjeffflake", "party": "R", "email": "", "votesmart_id": "28128"}}, {"legislator": {"website": "http://fleischmann.house.gov/", "fax": "202-225-3494", "govtrack_id": "412476", "firstname": "Chuck", "chamber": "house", "middlename": "", "lastname": "Fleischmann", "congress_office": "511 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3271", "webform": "", "youtube_url": "http://www.youtube.com/repchuck", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Chuck_Fleischmann", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepChuck", "birthdate": "1962-10-11", "bioguide_id": "F000459", "fec_id": "H0TN03254", "state": "TN", "crp_id": "N00030815", "official_rss": "", "facebook_id": "repchuck", "party": "R", "email": "", "votesmart_id": "123456"}}, {"legislator": {"website": "http://fleming.house.gov/", "fax": "202-225-8039", "govtrack_id": "412275", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Fleming", "congress_office": "416 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2777", "webform": "https://forms.house.gov/fleming/contact-form.shtml", "youtube_url": "http://www.youtube.com/larep04", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Fleming", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepFleming", "birthdate": "1951-07-05", "bioguide_id": "F000456", "fec_id": "H8LA04225", "state": "LA", "crp_id": "N00029679", "official_rss": "", "facebook_id": "RepJohnFleming", "party": "R", "email": "", "votesmart_id": "108811"}}, {"legislator": {"website": "http://flores.house.gov/", "fax": "202-225-0350", "govtrack_id": "412480", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Flores", "congress_office": "1505 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6105", "webform": "", "youtube_url": "http://www.youtube.com/RepBillFlores", "nickname": "", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Flores", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBillFlores", "birthdate": "1954-02-25", "bioguide_id": "F000461", "fec_id": "H0TX17104", "state": "TX", "crp_id": "N00031545", "official_rss": "", "facebook_id": "RepBillFlores", "party": "R", "email": "", "votesmart_id": "116906"}}, {"legislator": {"website": "http://forbes.house.gov/", "fax": "202-226-1170", "govtrack_id": "400137", "firstname": "James", "chamber": "house", "middlename": "Randy", "lastname": "Forbes", "congress_office": "2438 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6365", "webform": "http://forbes.house.gov/zipauth.html", "youtube_url": "http://www.youtube.com/RepRandyForbes", "nickname": "Randy", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Randy_Forbes", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Randy_Forbes", "birthdate": "1952-02-17", "bioguide_id": "F000445", "fec_id": "H2VA04052", "state": "VA", "crp_id": "N00013799", "official_rss": "", "facebook_id": "randyforbes", "party": "R", "email": "", "votesmart_id": "5146"}}, {"legislator": {"website": "http://fortenberry.house.gov/", "fax": "202-225-5686", "govtrack_id": "400640", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Fortenberry", "congress_office": "1514 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4806", "webform": "http://fortenberry.house.gov/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/JeffFortenberry", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Fortenberry", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JeffFortenberry", "birthdate": "1960-12-27", "bioguide_id": "F000449", "fec_id": "H4NE01064", "state": "NE", "crp_id": "N00026631", "official_rss": "", "facebook_id": "jefffortenberry", "party": "R", "email": "", "votesmart_id": "41929"}}, {"legislator": {"website": "http://foxx.house.gov/", "fax": "202-225-2995", "govtrack_id": "400643", "firstname": "Virginia", "chamber": "house", "middlename": "Ann", "lastname": "Foxx", "congress_office": "1230 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2071", "webform": "http://www.house.gov/formfoxx/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepVirginiaFoxx", "nickname": "Virginia", "gender": "F", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Virginia_Foxx", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "virginiafoxx", "birthdate": "1943-06-29", "bioguide_id": "F000450", "fec_id": "H4NC05146", "state": "NC", "crp_id": "N00026166", "official_rss": "", "facebook_id": "virginiafoxx", "party": "R", "email": "", "votesmart_id": "6051"}}, {"legislator": {"website": "http://www.house.gov/frank/", "fax": "202-225-0182", "govtrack_id": "400140", "firstname": "Barney", "chamber": "house", "middlename": "", "lastname": "Frank", "congress_office": "2252 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5931", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/barneyfrank", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Barney_Frank", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1940-03-31", "bioguide_id": "F000339", "fec_id": "H0MA04036", "state": "MA", "crp_id": "N00000275", "official_rss": "", "facebook_id": "barneyfrank", "party": "D", "email": "", "votesmart_id": "26897"}}, {"legislator": {"website": "http://www.franken.senate.gov", "fax": "", "govtrack_id": "412378", "firstname": "Al", "chamber": "senate", "middlename": "", "lastname": "Franken", "congress_office": "309 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5641", "webform": "http://www.franken.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorFranken", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Al_Franken", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1951-05-21", "bioguide_id": "F000457", "fec_id": "S8MN00438", "state": "MN", "crp_id": "N00029016", "official_rss": "", "facebook_id": "Sen.Franken", "party": "D", "email": "", "votesmart_id": "108924"}}, {"legislator": {"website": "http://franks.house.gov/", "fax": "202-225-6328", "govtrack_id": "400141", "firstname": "Trent", "chamber": "house", "middlename": "", "lastname": "Franks", "congress_office": "2435 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4576", "webform": "https://forms.house.gov/franks/email_zipcheck.shtml", "youtube_url": "http://www.youtube.com/RepTrentFranks", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Trent_Franks", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTrentFranks", "birthdate": "1957-06-19", "bioguide_id": "F000448", "fec_id": "H4AZ04024", "state": "AZ", "crp_id": "N00006423", "official_rss": "", "facebook_id": "TrentFranks", "party": "R", "email": "", "votesmart_id": "28399"}}, {"legislator": {"website": "http://frelinghuysen.house.gov/", "fax": "202-225-3186", "govtrack_id": "400142", "firstname": "Rodney", "chamber": "house", "middlename": "P.", "lastname": "Frelinghuysen", "congress_office": "2369 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5034", "webform": "http://frelinghuysen.house.gov/contactus/form.cfm", "youtube_url": "http://www.youtube.com/repfrelinghuysen", "nickname": "", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rodney_Frelinghuysen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RodneyforNJ", "birthdate": "1946-04-29", "bioguide_id": "F000372", "fec_id": "H2NJ05014", "state": "NJ", "crp_id": "N00000684", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "22177"}}, {"legislator": {"website": "http://fudge.house.gov/", "fax": "202-225-1339", "govtrack_id": "412327", "firstname": "Marcia", "chamber": "house", "middlename": "L.", "lastname": "Fudge", "congress_office": "1019 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7032", "webform": "https://forms.house.gov/fudge/contact-form.shtml", "youtube_url": "http://www.youtube.com/marcialfudge", "nickname": "", "gender": "F", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Marcia_Fudge", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "marciafudge", "birthdate": "1952-10-29", "bioguide_id": "F000455", "fec_id": "H8OH11141", "state": "OH", "crp_id": "N00030490", "official_rss": "", "facebook_id": "RepMarciaLFudge", "party": "D", "email": "", "votesmart_id": "110640"}}, {"legislator": {"website": "http://house.gov/gallegly/", "fax": "202-225-1100", "govtrack_id": "400144", "firstname": "Elton", "chamber": "house", "middlename": "W.", "lastname": "Gallegly", "congress_office": "2309 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5811", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/user/usrepeltongallegly", "nickname": "", "gender": "M", "district": "24", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Elton_Gallegly", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "eltongallegly24", "birthdate": "1944-03-07", "bioguide_id": "G000021", "fec_id": "H6CA21028", "state": "CA", "crp_id": "N00007231", "official_rss": "", "facebook_id": "eltongallegly", "party": "R", "email": "", "votesmart_id": "26750"}}, {"legislator": {"website": "http://garamendi.house.gov/", "fax": "202-225-5914", "govtrack_id": "412382", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Garamendi", "congress_office": "228 Cannon House Office Building", "eventful_id": "", "phone": "202-225-1880", "webform": "http://garamendi.house.gov/contact/email-me.shtml", "youtube_url": "", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Garamendi", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGaramendi", "birthdate": "1945-01-24", "bioguide_id": "G000559", "fec_id": "H0CA10149", "state": "CA", "crp_id": "N00030856", "official_rss": "", "facebook_id": "johngaramendi", "party": "D", "email": "", "votesmart_id": "29664"}}, {"legislator": {"website": "http://gardner.house.gov/", "fax": "", "govtrack_id": "412406", "firstname": "Cory", "chamber": "house", "middlename": "", "lastname": "Gardner", "congress_office": "213 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4676", "webform": "", "youtube_url": "http://www.youtube.com/RepCoryGardner", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Cory_Gardner", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCory", "birthdate": "1974-08-22", "bioguide_id": "G000562", "fec_id": "H0CO04122", "state": "CO", "crp_id": "N00030780", "official_rss": "", "facebook_id": "CongressmanGardner", "party": "R", "email": "", "votesmart_id": "30004"}}, {"legislator": {"website": "http://garrett.house.gov/", "fax": "202-225-9048", "govtrack_id": "400145", "firstname": "E. Scott", "chamber": "house", "middlename": "", "lastname": "Garrett", "congress_office": "2444 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4465", "webform": "http://www.house.gov/formgarrett/contact.shtml", "youtube_url": "http://www.youtube.com/RepScottGarrett", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/E._Scott_Garrett", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1959-07-09", "bioguide_id": "G000548", "fec_id": "H8NJ05052", "state": "NJ", "crp_id": "N00000743", "official_rss": "", "facebook_id": "repscottgarrett", "party": "R", "email": "", "votesmart_id": "4430"}}, {"legislator": {"website": "http://gerlach.house.gov/", "fax": "202-225-8440", "govtrack_id": "400147", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Gerlach", "congress_office": "2442 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4315", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepJimGerlach", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Gerlach", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JimGerlach", "birthdate": "1955-02-25", "bioguide_id": "G000549", "fec_id": "H2PA06114", "state": "PA", "crp_id": "N00025025", "official_rss": "", "facebook_id": "JimGerlach", "party": "R", "email": "", "votesmart_id": "5226"}}, {"legislator": {"website": "http://gibbs.house.gov/", "fax": "202-225-3394", "govtrack_id": "412463", "firstname": "Bob", "chamber": "house", "middlename": "", "lastname": "Gibbs", "congress_office": "329 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6265", "webform": "", "youtube_url": "http://www.youtube.com/user/RepBobGibbs", "nickname": "", "gender": "M", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bob_Gibbs", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Bob_gibbs", "birthdate": "1954-06-14", "bioguide_id": "G000563", "fec_id": "H0OH18077", "state": "OH", "crp_id": "N00031128", "official_rss": "", "facebook_id": "RepBobGibbs", "party": "R", "email": "", "votesmart_id": "45466"}}, {"legislator": {"website": "http://gibson.house.gov/", "fax": "202-225-1168", "govtrack_id": "412453", "firstname": "Christopher", "chamber": "house", "middlename": "", "lastname": "Gibson", "congress_office": "502 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5614", "webform": "", "youtube_url": "http://www.youtube.com/repchrisgibson", "nickname": "", "gender": "M", "district": "20", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Chris_Gibson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepChrisGibson", "birthdate": "1964-05-13", "bioguide_id": "G000564", "fec_id": "H0NY20095", "state": "NY", "crp_id": "N00031998", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "127042"}}, {"legislator": {"website": "http://www.gillibrand.senate.gov", "fax": "202-225-1168", "govtrack_id": "412223", "firstname": "Kirsten", "chamber": "senate", "middlename": "E.", "lastname": "Gillibrand", "congress_office": "478 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4451", "webform": "http://www.gillibrand.senate.gov/contact/", "youtube_url": "http://www.youtube.com/KirstenEGillibrand", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Kirsten_Gillibrand", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenGillibrand", "birthdate": "1966-12-09", "bioguide_id": "G000555", "fec_id": "H6NY20167", "state": "NY", "crp_id": "N00027658", "official_rss": "", "facebook_id": "KirstenGillibrand", "party": "D", "email": "", "votesmart_id": "65147"}}, {"legislator": {"website": "http://gingrey.house.gov/", "fax": "202-225-2944", "govtrack_id": "400151", "firstname": "Phil", "chamber": "house", "middlename": "", "lastname": "Gingrey", "congress_office": "442 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2931", "webform": "http://www.house.gov/formgingrey/IMA/issue.htm", "youtube_url": "http://www.youtube.com/RepPhilGingrey", "nickname": "", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Phil_Gingrey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepPhilGingrey", "birthdate": "1942-07-10", "bioguide_id": "G000550", "fec_id": "H2GA11149", "state": "GA", "crp_id": "N00024760", "official_rss": "", "facebook_id": "RepPhilGingrey", "party": "R", "email": "", "votesmart_id": "17644"}}, {"legislator": {"website": "http://gohmert.house.gov/index.html", "fax": "202-226-1230", "govtrack_id": "400651", "firstname": "Louis", "chamber": "house", "middlename": "", "lastname": "Gohmert", "congress_office": "2440 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3035", "webform": "http://gohmert.house.gov/contact_louie.htm", "youtube_url": "http://www.youtube.com/GohmertTX01", "nickname": "Louie", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Louis_Gohmert", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "replouiegohmert", "birthdate": "1953-08-18", "bioguide_id": "G000552", "fec_id": "H4TX04039", "state": "TX", "crp_id": "N00026148", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "50029"}}, {"legislator": {"website": "http://www.gonzalez.house.gov/", "fax": "202-225-1915", "govtrack_id": "400152", "firstname": "Charles", "chamber": "house", "middlename": "A.", "lastname": "Gonzalez", "congress_office": "1436 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3236", "webform": "http://www.gonzalez.house.gov/index.php?option=com_content&task=view&id=170", "youtube_url": "http://www.youtube.com/charlesagonzalez", "nickname": "Charlie", "gender": "M", "district": "20", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Gonzalez", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "TX20CharlieG", "birthdate": "1945-05-05", "bioguide_id": "G000544", "fec_id": "H8TX20077", "state": "TX", "crp_id": "N00005960", "official_rss": "", "facebook_id": "55174583605", "party": "D", "email": "", "votesmart_id": "25445"}}, {"legislator": {"website": "http://goodlatte.house.gov/", "fax": "202-225-9681", "govtrack_id": "400154", "firstname": "Robert", "chamber": "house", "middlename": "W.", "lastname": "Goodlatte", "congress_office": "2240 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5431", "webform": "http://www.house.gov/goodlatte/emailbob.htm", "youtube_url": "http://www.youtube.com/RepBobGoodlatte", "nickname": "Bob", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Goodlatte", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGoodlatte", "birthdate": "1952-09-22", "bioguide_id": "G000289", "fec_id": "H2VA06115", "state": "VA", "crp_id": "N00009154", "official_rss": "", "facebook_id": "BobGoodlatte", "party": "R", "email": "", "votesmart_id": "27116"}}, {"legislator": {"website": "http://gosar.house.gov/", "fax": "200-226-9739", "govtrack_id": "412397", "firstname": "Paul", "chamber": "house", "middlename": "", "lastname": "Gosar", "congress_office": "504 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2315", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Paul_Gosar", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGosar", "birthdate": "1958-11-27", "bioguide_id": "G000565", "fec_id": "H0AZ01259", "state": "AZ", "crp_id": "N00030771", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "123491"}}, {"legislator": {"website": "http://gowdy.house.gov/", "fax": "202-226-1177", "govtrack_id": "412473", "firstname": "Trey", "chamber": "house", "middlename": "", "lastname": "Gowdy", "congress_office": "1237 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6030", "webform": "", "youtube_url": "http://www.youtube.com/user/TGowdySC", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Trey_Gowdy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "tgowdysc", "birthdate": "1964-08-22", "bioguide_id": "G000566", "fec_id": "H0SC04257", "state": "SC", "crp_id": "N00030880", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "121782"}}, {"legislator": {"website": "http://www.lgraham.senate.gov/", "fax": "202-224-3808", "govtrack_id": "300047", "firstname": "Lindsey", "chamber": "senate", "middlename": "O.", "lastname": "Graham", "congress_office": "290 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5972", "webform": "http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Contact.EmailSenatorGraham", "youtube_url": "http://www.youtube.com/USSenLindseyGraham", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Lindsey_Graham", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "GrahamBlog", "birthdate": "1955-07-09", "bioguide_id": "G000359", "fec_id": "S0SC00149", "state": "SC", "crp_id": "N00009975", "official_rss": "", "facebook_id": "USSenatorLindseyGraham", "party": "R", "email": "", "votesmart_id": "21992"}}, {"legislator": {"website": "http://kaygranger.house.gov/", "fax": "202-225-5683", "govtrack_id": "400157", "firstname": "Kay", "chamber": "house", "middlename": "", "lastname": "Granger", "congress_office": "320 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5071", "webform": "http://kaygranger.house.gov/?sectionid=46&sectiontree=46", "youtube_url": "http://www.youtube.com/repkaygranger", "nickname": "", "gender": "F", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kay_Granger", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKayGranger", "birthdate": "1943-01-18", "bioguide_id": "G000377", "fec_id": "H6TX12060", "state": "TX", "crp_id": "N00008799", "official_rss": "", "facebook_id": "49640749719", "party": "R", "email": "", "votesmart_id": "334"}}, {"legislator": {"website": "http://www.grassley.senate.gov", "fax": "202-224-6020", "govtrack_id": "300048", "firstname": "Charles", "chamber": "senate", "middlename": "E.", "lastname": "Grassley", "congress_office": "135 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3744", "webform": "http://www.grassley.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenChuckGrassley", "nickname": "Chuck", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Grassley", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "ChuckGrassley", "birthdate": "1933-09-17", "bioguide_id": "G000386", "fec_id": "S0IA00028", "state": "IA", "crp_id": "N00001758", "official_rss": "", "facebook_id": "grassley", "party": "R", "email": "", "votesmart_id": "53293"}}, {"legislator": {"website": "http://tomgraves.house.gov/", "fax": "202-225-8272", "govtrack_id": "412388", "firstname": "John", "chamber": "house", "middlename": "Thomas", "lastname": "Graves", "congress_office": "1113 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5211", "webform": "http://tomgraves.house.gov/contact/", "youtube_url": "http://www.youtube.com/user/CongressmanGraves", "nickname": "Tom", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Graves", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "reptomgraves", "birthdate": "2010-02-03", "bioguide_id": "G000560", "fec_id": "H0GA09030", "state": "GA", "crp_id": "N00030788", "official_rss": "", "facebook_id": "reptomgraves", "party": "R", "email": "", "votesmart_id": "31969"}}, {"legislator": {"website": "http://house.gov/graves/", "fax": "202-225-8221", "govtrack_id": "400158", "firstname": "Samuel", "chamber": "house", "middlename": "B.", "lastname": "Graves", "congress_office": "1415 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7041", "webform": "http://www.house.gov/graves/contact.shtml", "youtube_url": "", "nickname": "Sam", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Samuel_Graves", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1963-11-07", "bioguide_id": "G000546", "fec_id": "H0MO06073", "state": "MO", "crp_id": "N00013323", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "9425"}}, {"legislator": {"website": "http://house.gov/algreen/", "fax": "202-225-2947", "govtrack_id": "400653", "firstname": "Al", "chamber": "house", "middlename": "", "lastname": "Green", "congress_office": "2201 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-7508", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepAlGreen", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Al_Green", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAlGreen", "birthdate": "1947-09-01", "bioguide_id": "G000553", "fec_id": "H4TX09095", "state": "TX", "crp_id": "N00026686", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "49680"}}, {"legislator": {"website": "http://house.gov/green/", "fax": "202-225-9903", "govtrack_id": "400160", "firstname": "Raymond", "chamber": "house", "middlename": "Eugene", "lastname": "Green", "congress_office": "2470 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1688", "webform": "http://www.house.gov/green/contact", "youtube_url": "", "nickname": "Gene", "gender": "M", "district": "29", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Raymond_Green", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGeneGreen", "birthdate": "1947-10-17", "bioguide_id": "G000410", "fec_id": "H2TX29030", "state": "TX", "crp_id": "N00005870", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "27100"}}, {"legislator": {"website": "http://griffin.house.gov/", "fax": "202-225-5903", "govtrack_id": "412401", "firstname": "Tim", "chamber": "house", "middlename": "", "lastname": "Griffin", "congress_office": "1232 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2506", "webform": "", "youtube_url": "http://www.youtube.com/reptimgriffin", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Griffin", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTimGriffin", "birthdate": "1968-08-21", "bioguide_id": "G000567", "fec_id": "H0AR02107", "state": "AR", "crp_id": "N00031297", "official_rss": "", "facebook_id": "RepTimGriffin", "party": "R", "email": "", "votesmart_id": "119213"}}, {"legislator": {"website": "http://morgangriffith.house.gov/", "fax": "202- 225-0076", "govtrack_id": "412485", "firstname": "Morgan", "chamber": "house", "middlename": "", "lastname": "Griffith", "congress_office": "1108 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3861", "webform": "", "youtube_url": "http://www.youtube.com/RepMorganGriffith", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Morgan_Griffith", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMGriffith", "birthdate": "1958-03-15", "bioguide_id": "G000568", "fec_id": "H0VA09055", "state": "VA", "crp_id": "N00032029", "official_rss": "", "facebook_id": "RepMorganGriffith", "party": "R", "email": "", "votesmart_id": "5148"}}, {"legislator": {"website": "http://grijalva.house.gov/", "fax": "202-225-1541", "govtrack_id": "400162", "firstname": "Raul", "chamber": "house", "middlename": "M.", "lastname": "Grijalva", "congress_office": "1511 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2435", "webform": "http://grijalva.house.gov/?sectionid=49&sectiontree=2,49", "youtube_url": "http://www.youtube.com/raulgrijalvaaz07", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Raul_Grijalva", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repraulgrijalva", "birthdate": "1948-02-19", "bioguide_id": "G000551", "fec_id": "H2AZ07070", "state": "AZ", "crp_id": "N00025284", "official_rss": "", "facebook_id": "Rep.Grijalva", "party": "D", "email": "", "votesmart_id": "28253"}}, {"legislator": {"website": "http://grimm.house.gov/", "fax": "202- 226-1272", "govtrack_id": "412451", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Grimm", "congress_office": "512 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3371", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Grimm", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1970-02-07", "bioguide_id": "G000569", "fec_id": "H0NY13074", "state": "NY", "crp_id": "N00031401", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "127075"}}, {"legislator": {"website": "http://guinta.house.gov/", "fax": "202-225-5822", "govtrack_id": "412447", "firstname": "Frank", "chamber": "house", "middlename": "", "lastname": "Guinta", "congress_office": "1223 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5456", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_Guinta", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "frankguinta", "birthdate": "1970-09-26", "bioguide_id": "G000570", "fec_id": "H0NH01217", "state": "NH", "crp_id": "N00030801", "official_rss": "", "facebook_id": "repfrankguinta", "party": "R", "email": "", "votesmart_id": "42946"}}, {"legislator": {"website": "http://guthrie.house.gov/", "fax": "202-226-2019", "govtrack_id": "412278", "firstname": "Steven", "chamber": "house", "middlename": "Brett", "lastname": "Guthrie", "congress_office": "308 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3501", "webform": "https://forms.house.gov/guthrie/contact-form.shtml", "youtube_url": "http://www.youtube.com/user/BrettGuthrie", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_Guthrie", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1964-02-18", "bioguide_id": "G000558", "fec_id": "H8KY02031", "state": "KY", "crp_id": "N00029675", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "18829"}}, {"legislator": {"website": "http://luisgutierrez.house.gov/", "fax": "202-225-7810", "govtrack_id": "400163", "firstname": "Luis", "chamber": "house", "middlename": "V.", "lastname": "Gutierrez", "congress_office": "2266 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8203", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/repluisgutierrez", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Luis_Gutierrez", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repgutierrez", "birthdate": "1953-12-10", "bioguide_id": "G000535", "fec_id": "H2IL08039", "state": "IL", "crp_id": "N00004874", "official_rss": "", "facebook_id": "RepGutierrez", "party": "D", "email": "", "votesmart_id": "26841"}}, {"legislator": {"website": "http://www.hagan.senate.gov", "fax": "202-228-2563", "govtrack_id": "412324", "firstname": "Kay", "chamber": "senate", "middlename": "R.", "lastname": "Hagan", "congress_office": "521 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-6342", "webform": "http://www.hagan.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorHagan", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Kay_Hagan", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenatorHagan", "birthdate": "1953-05-26", "bioguide_id": "H001049", "fec_id": "S8NC00239", "state": "NC", "crp_id": "N00029617", "official_rss": "", "facebook_id": "SenatorHagan", "party": "D", "email": "", "votesmart_id": "21082"}}, {"legislator": {"website": "http://hahn.house.gov/", "fax": "202-226-7290", "govtrack_id": "412498", "firstname": "Janice", "chamber": "house", "middlename": "", "lastname": "Hahn", "congress_office": "2400 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8220", "webform": "https://hahn.house.gov/contact-me/email-me", "youtube_url": "http://www.youtube.com/RepJaniceHahn", "nickname": "", "gender": "F", "district": "36", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Janice_Hahn", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Rep_JaniceHahn", "birthdate": "1952-03-30", "bioguide_id": "H001063", "fec_id": "H8CA36097", "state": "CA", "crp_id": "N00006806", "official_rss": "", "facebook_id": "Congresswoman-Janice-Hahn", "party": "D", "email": "", "votesmart_id": "70502"}}, {"legislator": {"website": "http://ralphhall.house.gov/", "fax": "202-225-3332", "govtrack_id": "400165", "firstname": "Ralph", "chamber": "house", "middlename": "Moody", "lastname": "Hall", "congress_office": "2405 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6673", "webform": "http://www.house.gov/ralphhall/IMA/zipauth.htm", "youtube_url": "", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ralph_Hall", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1923-05-03", "bioguide_id": "H000067", "fec_id": "H0TX04037", "state": "TX", "crp_id": "N00005645", "official_rss": "", "facebook_id": "6311458773", "party": "R", "email": "", "votesmart_id": "27080"}}, {"legislator": {"website": "http://hanabusa.house.gov/", "fax": "202-225-4580", "govtrack_id": "412418", "firstname": "Colleen", "chamber": "house", "middlename": "", "lastname": "Hanabusa", "congress_office": "238 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2726", "webform": "", "youtube_url": "http://www.youtube.com/user/rephanabusa", "nickname": "", "gender": "F", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Colleen_Hanabusa", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "colleenhanabusa", "birthdate": "1951-05-04", "bioguide_id": "H001050", "fec_id": "H2HI02110", "state": "HI", "crp_id": "N00025881", "official_rss": "", "facebook_id": "169979129710178", "party": "D", "email": "", "votesmart_id": "17745"}}, {"legislator": {"website": "http://hanna.house.gov/", "fax": "202-225-1891", "govtrack_id": "412454", "firstname": "Richard", "chamber": "house", "middlename": "", "lastname": "Hanna", "congress_office": "319 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3665", "webform": "", "youtube_url": "http://www.youtube.com/reprichardhanna", "nickname": "", "gender": "M", "district": "24", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Hanna", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRichardHanna", "birthdate": "1951-01-25", "bioguide_id": "H001051", "fec_id": "H8NY24066", "state": "NY", "crp_id": "N00030197", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "110344"}}, {"legislator": {"website": "http://www.harkin.senate.gov/", "fax": "202-224-9369", "govtrack_id": "300051", "firstname": "Thomas", "chamber": "senate", "middlename": "", "lastname": "Harkin", "congress_office": "731 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3254", "webform": "http://www.harkin.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenatorTomHarkin", "nickname": "Tom", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Thomas_Harkin", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenatorHarkin", "birthdate": "1939-11-19", "bioguide_id": "H000206", "fec_id": "S4IA00020", "state": "IA", "crp_id": "N00004207", "official_rss": "", "facebook_id": "tomharkin", "party": "D", "email": "", "votesmart_id": "53294"}}, {"legislator": {"website": "http://harper.house.gov/", "fax": "202-225-5797", "govtrack_id": "412280", "firstname": "Gregg", "chamber": "house", "middlename": "", "lastname": "Harper", "congress_office": "307 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5031", "webform": "http://harper.house.gov/contact/", "youtube_url": "http://www.youtube.com/congressmanharper", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gregg_Harper", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "GreggHarper", "birthdate": "1956-06-01", "bioguide_id": "H001045", "fec_id": "H8MS03067", "state": "MS", "crp_id": "N00029632", "official_rss": "", "facebook_id": "GreggHarper", "party": "R", "email": "", "votesmart_id": "101985"}}, {"legislator": {"website": "http://harris.house.gov/", "fax": "202-225-0254", "govtrack_id": "412434", "firstname": "Andy", "chamber": "house", "middlename": "", "lastname": "Harris", "congress_office": "506 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5311", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Andy_Harris", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1957-01-25", "bioguide_id": "H001052", "fec_id": "H8MD01094", "state": "MD", "crp_id": "N00029147", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "19157"}}, {"legislator": {"website": "http://hartzler.house.gov/", "fax": "202- 225-2695", "govtrack_id": "412444", "firstname": "Vicky", "chamber": "house", "middlename": "", "lastname": "Hartzler", "congress_office": "1023 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2876", "webform": "", "youtube_url": "http://www.youtube.com/repvickyhartzler", "nickname": "", "gender": "F", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Vicky_Hartzler", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepHartzler", "birthdate": "1960-10-13", "bioguide_id": "H001053", "fec_id": "H0MO04086", "state": "MO", "crp_id": "N00031005", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "8783"}}, {"legislator": {"website": "http://alceehastings.house.gov/", "fax": "202-225-1171", "govtrack_id": "400170", "firstname": "Alcee", "chamber": "house", "middlename": "L.", "lastname": "Hastings", "congress_office": "2353 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1313", "webform": "http://www.alceehastings.house.gov/index.php?option=com_content&task=view&id=104&Itemid=", "youtube_url": "http://www.youtube.com/RepAlceeHastings", "nickname": "", "gender": "M", "district": "23", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Alcee_Hastings", "in_office": true, "senate_class": "", "name_suffix": "Sr.", "twitter_id": "", "birthdate": "1936-09-05", "bioguide_id": "H000324", "fec_id": "H2FL23021", "state": "FL", "crp_id": "N00002884", "official_rss": "", "facebook_id": "95696782238", "party": "D", "email": "", "votesmart_id": "26798"}}, {"legislator": {"website": "http://hastings.house.gov/", "fax": "202-225-3251", "govtrack_id": "400171", "firstname": "Doc", "chamber": "house", "middlename": "", "lastname": "Hastings", "congress_office": "1203 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5816", "webform": "http://hastings.house.gov/ContactForm.aspx", "youtube_url": "http://www.youtube.com/RepDocHastings", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Doc_Hastings", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DocHastings", "birthdate": "1941-02-07", "bioguide_id": "H000329", "fec_id": "H2WA04041", "state": "WA", "crp_id": "N00009157", "official_rss": "", "facebook_id": "7507129675", "party": "R", "email": "", "votesmart_id": "22318"}}, {"legislator": {"website": "http://www.hatch.senate.gov/", "fax": "202-224-6331", "govtrack_id": "300052", "firstname": "Orrin", "chamber": "senate", "middlename": "G.", "lastname": "Hatch", "congress_office": "104 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5251", "webform": "http://www.hatch.senate.gov/public/index.cfm/contact?p=Email-Orrin", "youtube_url": "http://www.youtube.com/SenatorOrrinHatch", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Orrin_Hatch", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "OrrinHatch", "birthdate": "1934-03-22", "bioguide_id": "H000338", "fec_id": "S6UT00063", "state": "UT", "crp_id": "N00009869", "official_rss": "", "facebook_id": "OrrinHatch", "party": "R", "email": "", "votesmart_id": "53352"}}, {"legislator": {"website": "http://hayworth.house.gov/", "fax": "202- 225-3289", "govtrack_id": "412452", "firstname": "Nan", "chamber": "house", "middlename": "", "lastname": "Hayworth", "congress_office": "1440 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5441", "webform": "", "youtube_url": "http://www.youtube.com/Repnanhayworth", "nickname": "", "gender": "F", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nan_Hayworth", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepNanHayworth", "birthdate": "1959-12-14", "bioguide_id": "H001054", "fec_id": "H0NY19139", "state": "NY", "crp_id": "N00031124", "official_rss": "", "facebook_id": "RepNanHayworth", "party": "R", "email": "", "votesmart_id": "127041"}}, {"legislator": {"website": "http://heck.house.gov/", "fax": "202- 225-2185", "govtrack_id": "412446", "firstname": "Joe", "chamber": "house", "middlename": "", "lastname": "Heck", "congress_office": "132 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3252", "webform": "", "youtube_url": "http://www.youtube.com/repjoeheck", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Heck", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "heck4nevada", "birthdate": "1961-03-03", "bioguide_id": "H001055", "fec_id": "H0NV03058", "state": "NV", "crp_id": "N00031244", "official_rss": "", "facebook_id": "155211751194624", "party": "R", "email": "", "votesmart_id": "44082"}}, {"legislator": {"website": "http://heinrich.house.gov/", "fax": "202-225-4975", "govtrack_id": "412281", "firstname": "Martin", "chamber": "house", "middlename": "T.", "lastname": "Heinrich", "congress_office": "336 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6316", "webform": "https://forms.house.gov/heinrich/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepMartinHeinrich", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Martin_Heinrich", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1971-10-17", "bioguide_id": "H001046", "fec_id": "H8NM01224", "state": "NM", "crp_id": "N00029835", "official_rss": "", "facebook_id": "MartinHeinrich", "party": "D", "email": "", "votesmart_id": "74517"}}, {"legislator": {"website": "http://www.heller.senate.gov/", "fax": "", "govtrack_id": "412218", "firstname": "Dean", "chamber": "senate", "middlename": "", "lastname": "Heller", "congress_office": "361a Russell Senate Office Building", "eventful_id": "", "phone": "202-224-6244", "webform": "http://www.heller.senate.gov/public/index.cfm/contact-form", "youtube_url": "http://www.youtube.com/CongressmanHeller", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Dean_Heller", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "DeanHeller", "birthdate": "1960-05-10", "bioguide_id": "H001041", "fec_id": "H6NV02164", "state": "NV", "crp_id": "N00027522", "official_rss": "", "facebook_id": "325751330177", "party": "R", "email": "", "votesmart_id": "2291"}}, {"legislator": {"website": "http://hensarling.house.gov/", "fax": "202-226-4888", "govtrack_id": "400175", "firstname": "Jeb", "chamber": "house", "middlename": "", "lastname": "Hensarling", "congress_office": "129 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3484", "webform": "http://www.house.gov/hensarling/contact_web.shtml", "youtube_url": "http://www.youtube.com/RepJebHensarling", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeb_Hensarling", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepHensarling", "birthdate": "1957-05-29", "bioguide_id": "H001036", "fec_id": "H2TX05121", "state": "TX", "crp_id": "N00024922", "official_rss": "", "facebook_id": "RepHensarling", "party": "R", "email": "", "votesmart_id": "49827"}}, {"legislator": {"website": "http://herger.house.gov/", "fax": "202-225-1740", "govtrack_id": "400176", "firstname": "Walter", "chamber": "house", "middlename": "", "lastname": "Herger", "congress_office": "242 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3076", "webform": "http://www.house.gov/herger/contact.shtml", "youtube_url": "http://www.youtube.com/RepWallyHerger", "nickname": "Wally", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Walter_Herger", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1945-05-20", "bioguide_id": "H000528", "fec_id": "H6CA02010", "state": "CA", "crp_id": "N00007584", "official_rss": "", "facebook_id": "106290861103", "party": "R", "email": "", "votesmart_id": "26728"}}, {"legislator": {"website": "http://herrerabeutler.house.gov/", "fax": "202-225-3478", "govtrack_id": "412486", "firstname": "Jaime", "chamber": "house", "middlename": "", "lastname": "Herrera", "congress_office": "1130 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3536", "webform": "", "youtube_url": "http://www.youtube.com/user/RepHerreraBeutler", "nickname": "", "gender": "F", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jaime_Herrera", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "herrerabeutler", "birthdate": "1978-11-03", "bioguide_id": "H001056", "fec_id": "H0WA03187", "state": "WA", "crp_id": "N00031559", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "101907"}}, {"legislator": {"website": "http://higgins.house.gov/", "fax": "202-226-0347", "govtrack_id": "400641", "firstname": "Brian", "chamber": "house", "middlename": "M.", "lastname": "Higgins", "congress_office": "2459 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3306", "webform": "http://higgins.house.gov/email.asp", "youtube_url": "http://www.youtube.com/CongressmanHiggins", "nickname": "", "gender": "M", "district": "27", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Brian_Higgins", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBrianHiggins", "birthdate": "1959-10-06", "bioguide_id": "H001038", "fec_id": "H4NY27076", "state": "NY", "crp_id": "N00027060", "official_rss": "", "facebook_id": "RepBrianHiggins", "party": "D", "email": "", "votesmart_id": "23127"}}, {"legislator": {"website": "http://himes.house.gov/", "fax": "202-225-9629", "govtrack_id": "412282", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Himes", "congress_office": "119 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5541", "webform": "https://forms.house.gov/himes/contact-form.shtml", "youtube_url": "http://www.youtube.com/congressmanhimes", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Himes", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jahimes", "birthdate": "1966-07-05", "bioguide_id": "H001047", "fec_id": "H8CT04172", "state": "CT", "crp_id": "N00029070", "official_rss": "", "facebook_id": "CongressmanJimHimes", "party": "D", "email": "", "votesmart_id": "106744"}}, {"legislator": {"website": "http://house.gov/hinchey/", "fax": "202-226-0774", "govtrack_id": "400178", "firstname": "Maurice", "chamber": "house", "middlename": "D.", "lastname": "Hinchey", "congress_office": "2431 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6335", "webform": "http://www.house.gov/hinchey/contact/zipauth.shtml", "youtube_url": "http://www.youtube.com/user/RepMauriceHinchey", "nickname": "", "gender": "M", "district": "22", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Maurice_Hinchey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "mauricehinchey", "birthdate": "1938-10-27", "bioguide_id": "H000627", "fec_id": "H2NY26080", "state": "NY", "crp_id": "N00001222", "official_rss": "", "facebook_id": "MauriceHinchey", "party": "D", "email": "", "votesmart_id": "26989"}}, {"legislator": {"website": "http://hinojosa.house.gov/", "fax": "202-225-5688", "govtrack_id": "400179", "firstname": "Ruben", "chamber": "house", "middlename": "E.", "lastname": "Hinojosa", "congress_office": "2262 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2531", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepRubenHinojosa", "nickname": "", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ruben_Hinojosa", "in_office": true, "senate_class": "", "name_suffix": "Sr.", "twitter_id": "USRepRHinojosa", "birthdate": "1940-08-20", "bioguide_id": "H000636", "fec_id": "H6TX15055", "state": "TX", "crp_id": "N00006008", "official_rss": "", "facebook_id": "CongressmanRubenHinojosa", "party": "D", "email": "", "votesmart_id": "291"}}, {"legislator": {"website": "http://hirono.house.gov/", "fax": "202-225-4987", "govtrack_id": "412200", "firstname": "Mazie", "chamber": "house", "middlename": "K.", "lastname": "Hirono", "congress_office": "1410 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4906", "webform": "http://hirono.house.gov/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/CongresswomanHirono", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mazie_Hirono", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "maziehirono", "birthdate": "1947-11-03", "bioguide_id": "H001042", "fec_id": "H6HI02251", "state": "HI", "crp_id": "N00028139", "official_rss": "", "facebook_id": "m.k.hirono", "party": "D", "email": "", "votesmart_id": "1677"}}, {"legislator": {"website": "http://hochul.house.gov/", "fax": "", "govtrack_id": "412497", "firstname": "Kathy", "chamber": "house", "middlename": "", "lastname": "Hochul", "congress_office": "1711 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5265", "webform": "", "youtube_url": "http://www.youtube.com/user/RepKathyHochul", "nickname": "", "gender": "F", "district": "26", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kathy_Hochul", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKathyHochul", "birthdate": "1958-08-27", "bioguide_id": "H001062", "fec_id": "H2NY00036", "state": "NY", "crp_id": "N00033055", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "129238"}}, {"legislator": {"website": "http://www.hoeven.senate.gov", "fax": "", "govtrack_id": "412494", "firstname": "John", "chamber": "senate", "middlename": "", "lastname": "Hoeven", "congress_office": "120 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2551", "webform": "http://www.hoeven.senate.gov/public/index.cfm/email-the-senator", "youtube_url": "", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Hoeven", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "", "birthdate": "1957-03-13", "bioguide_id": "H001061", "fec_id": "S0ND00093", "state": "ND", "crp_id": "N00031688", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "41788"}}, {"legislator": {"website": "http://holden.house.gov/", "fax": "202-226-0996", "govtrack_id": "400183", "firstname": "Tim", "chamber": "house", "middlename": "", "lastname": "Holden", "congress_office": "2417 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5546", "webform": "http://www.holden.house.gov/contactform_zipcheck.shtml", "youtube_url": "", "nickname": "", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Holden", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTimHolden", "birthdate": "1957-03-05", "bioguide_id": "H000712", "fec_id": "H2PA06080", "state": "PA", "crp_id": "N00001469", "official_rss": "", "facebook_id": "CongressmanTimHolden", "party": "D", "email": "", "votesmart_id": "27042"}}, {"legislator": {"website": "http://holt.house.gov", "fax": "202-225-6025", "govtrack_id": "400184", "firstname": "Rush", "chamber": "house", "middlename": "D.", "lastname": "Holt", "congress_office": "1214 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5801", "webform": "http://www.holt.house.gov/contact.shtml", "youtube_url": "http://www.youtube.com/RushHolt", "nickname": "", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rush_Holt", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "rushholt", "birthdate": "1948-10-15", "bioguide_id": "H001032", "fec_id": "H6NJ12144", "state": "NJ", "crp_id": "N00000860", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "22574"}}, {"legislator": {"website": "http://honda.house.gov/", "fax": "202-225-2699", "govtrack_id": "400185", "firstname": "Michael", "chamber": "house", "middlename": "M.", "lastname": "Honda", "congress_office": "1713 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2631", "webform": "http://honda.house.gov/contactmike.shtml", "youtube_url": "http://www.youtube.com/RepMikeHonda", "nickname": "Mike", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Honda", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeHonda", "birthdate": "1941-06-27", "bioguide_id": "H001034", "fec_id": "H0CA15148", "state": "CA", "crp_id": "N00012611", "official_rss": "", "facebook_id": "RepMikeHonda", "party": "D", "email": "", "votesmart_id": "9674"}}, {"legislator": {"website": "http://hoyer.house.gov/", "fax": "202-225-4300", "govtrack_id": "400189", "firstname": "Steny", "chamber": "house", "middlename": "H.", "lastname": "Hoyer", "congress_office": "1705 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4131", "webform": "http://hoyer.house.gov/contact/email.asp", "youtube_url": "http://www.youtube.com/LeaderHoyer", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steny_Hoyer", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "WhipHoyer", "birthdate": "1939-06-14", "bioguide_id": "H000874", "fec_id": "H2MD05155", "state": "MD", "crp_id": "N00001821", "official_rss": "", "facebook_id": "stenyhoyer", "party": "D", "email": "", "votesmart_id": "26890"}}, {"legislator": {"website": "http://huelskamp.house.gov/", "fax": "202- 225-5124", "govtrack_id": "412429", "firstname": "Tim", "chamber": "house", "middlename": "", "lastname": "Huelskamp", "congress_office": "126 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2715", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Huelskamp", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "conghuelskamp", "birthdate": "1968-11-11", "bioguide_id": "H001057", "fec_id": "H6KS01146", "state": "KS", "crp_id": "N00027649", "official_rss": "", "facebook_id": "165730996804553", "party": "R", "email": "", "votesmart_id": "12571"}}, {"legislator": {"website": "http://huizenga.house.gov/", "fax": "202- 226-0779", "govtrack_id": "412437", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Huizenga", "congress_office": "1217 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4401", "webform": "", "youtube_url": "http://youtube.com/RepHuizenga", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Huizenga", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "rephuizenga", "birthdate": "1969-01-31", "bioguide_id": "H001058", "fec_id": "H0MI02094", "state": "MI", "crp_id": "N00030673", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "38351"}}, {"legislator": {"website": "http://hultgren.house.gov/", "fax": "202- 225-0697", "govtrack_id": "412422", "firstname": "Randy", "chamber": "house", "middlename": "", "lastname": "Hultgren", "congress_office": "427 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2976", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Randy_Hultgren", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "randyhultgren", "birthdate": "1966-03-01", "bioguide_id": "H001059", "fec_id": "H0IL14080", "state": "IL", "crp_id": "N00031104", "official_rss": "", "facebook_id": "randyhultgren", "party": "R", "email": "", "votesmart_id": "18199"}}, {"legislator": {"website": "http://hunter.house.gov/", "fax": "202-225-0235", "govtrack_id": "412283", "firstname": "Duncan", "chamber": "house", "middlename": "D.", "lastname": "Hunter", "congress_office": "223 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5672", "webform": "https://forms.house.gov/hunter/zipauthen_contact.shtml", "youtube_url": "http://www.youtube.com/CongressmanHunter", "nickname": "", "gender": "M", "district": "52", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Duncan_Hunter", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1976-12-07", "bioguide_id": "H001048", "fec_id": "H8CA52052", "state": "CA", "crp_id": "N00029258", "official_rss": "", "facebook_id": "DuncanHunter", "party": "R", "email": "", "votesmart_id": "104308"}}, {"legislator": {"website": "http://hurt.house.gov/", "fax": "202-225-5681", "govtrack_id": "412484", "firstname": "Robert", "chamber": "house", "middlename": "", "lastname": "Hurt", "congress_office": "1516 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4711", "webform": "", "youtube_url": "http://www.youtube.com/user/RepRobertHurt", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Hurt", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRobertHurt", "birthdate": "1969-06-16", "bioguide_id": "H001060", "fec_id": "H0VA05095", "state": "VA", "crp_id": "N00031265", "official_rss": "", "facebook_id": "RepRobertHurt", "party": "R", "email": "", "votesmart_id": "50895"}}, {"legislator": {"website": "http://www.hutchison.senate.gov/", "fax": "202-224-0776", "govtrack_id": "300054", "firstname": "Kay", "chamber": "senate", "middlename": "Bailey", "lastname": "Hutchison", "congress_office": "284 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5922", "webform": "http://www.hutchison.senate.gov/?p=email_kay", "youtube_url": "http://www.youtube.com/SenatorHutchison", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Kay_Hutchison", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "kaybaileyhutch", "birthdate": "1943-07-22", "bioguide_id": "H001016", "fec_id": "S4TX00086", "state": "TX", "crp_id": "N00005675", "official_rss": "", "facebook_id": "kaybaileyhutchison", "party": "R", "email": "", "votesmart_id": "53349"}}, {"legislator": {"website": "http://www.inhofe.senate.gov/", "fax": "202-228-0380", "govtrack_id": "300055", "firstname": "James", "chamber": "senate", "middlename": "M.", "lastname": "Inhofe", "congress_office": "205 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4721", "webform": "http://www.inhofe.senate.gov/public/index.cfm?FuseAction=Contact.ContactForm", "youtube_url": "http://www.youtube.com/JimInhofePressOffice", "nickname": "Jim", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/James_Inhofe", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "jiminhofe", "birthdate": "1934-11-17", "bioguide_id": "I000024", "fec_id": "S4OK00083", "state": "OK", "crp_id": "N00005582", "official_rss": "", "facebook_id": "jiminhofe", "party": "R", "email": "", "votesmart_id": "27027"}}, {"legislator": {"website": "http://www.inouye.senate.gov/", "fax": "202-224-6747", "govtrack_id": "300056", "firstname": "Daniel", "chamber": "senate", "middlename": "K.", "lastname": "Inouye", "congress_office": "722 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3934", "webform": "http://www.inouye.senate.gov/Contact/ContactDKI.cfm", "youtube_url": "", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Inouye", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "daniel_inouye", "birthdate": "1924-09-07", "bioguide_id": "I000025", "fec_id": "S4HI00011", "state": "HI", "crp_id": "N00001762", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "53285"}}, {"legislator": {"website": "http://www.isakson.senate.gov", "fax": "202-228-0724", "govtrack_id": "400194", "firstname": "John", "chamber": "senate", "middlename": "H.", "lastname": "Isakson", "congress_office": "131 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3643", "webform": "http://www.isakson.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenatorIsakson", "nickname": "Johnny", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Isakson", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "", "birthdate": "1944-12-28", "bioguide_id": "I000055", "fec_id": "S6GA00119", "state": "GA", "crp_id": "N00002593", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "1721"}}, {"legislator": {"website": "http://israel.house.gov/", "fax": "202-225-4669", "govtrack_id": "400195", "firstname": "Steve", "chamber": "house", "middlename": "J.", "lastname": "Israel", "congress_office": "2457 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3335", "webform": "http://www.house.gov/formisrael/contact.html", "youtube_url": "http://www.youtube.com/RepSteveIsrael", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_Israel", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSteveIsrael", "birthdate": "1958-05-30", "bioguide_id": "I000057", "fec_id": "H0NY02085", "state": "NY", "crp_id": "N00013345", "official_rss": "", "facebook_id": "RepSteveIsrael", "party": "D", "email": "", "votesmart_id": "55440"}}, {"legislator": {"website": "http://issa.house.gov/", "fax": "202-225-3303", "govtrack_id": "400196", "firstname": "Darrell", "chamber": "house", "middlename": "", "lastname": "Issa", "congress_office": "2347 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3906", "webform": "http://issa.house.gov/index.cfm?FuseAction=Contact.ContactForm", "youtube_url": "http://www.youtube.com/RepDarrellIssa", "nickname": "", "gender": "M", "district": "49", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Darrell_Issa", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DarrellIssa", "birthdate": "1954-01-01", "bioguide_id": "I000056", "fec_id": "H0CA48024", "state": "CA", "crp_id": "N00007017", "official_rss": "", "facebook_id": "darrellissa", "party": "R", "email": "", "votesmart_id": "16553"}}, {"legislator": {"website": "http://jackson.house.gov/", "fax": "202-225-0899", "govtrack_id": "400198", "firstname": "Jesse", "chamber": "house", "middlename": "Louis", "lastname": "Jackson", "congress_office": "2419 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-0773", "webform": "http://www.house.gov/jackson/ContactByEMail.shtml", "youtube_url": "http://www.youtube.com/JesseJrTube", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jesse_Jackson", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "RepJJJr", "birthdate": "1965-03-11", "bioguide_id": "J000283", "fec_id": "H6IL02124", "state": "IL", "crp_id": "N00012457", "official_rss": "", "facebook_id": "16250110021", "party": "D", "email": "", "votesmart_id": "72"}}, {"legislator": {"website": "http://jacksonlee.house.gov/", "fax": "202-225-3317", "govtrack_id": "400199", "firstname": "Sheila", "chamber": "house", "middlename": "", "lastname": "Jackson Lee", "congress_office": "2160 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3816", "webform": "http://www.jacksonlee.house.gov/contact-form.shtml", "youtube_url": " http://www.youtube.com/user/TX18SJL", "nickname": "", "gender": "F", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sheila_Jackson_Lee", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JacksonLeeTX18", "birthdate": "1950-01-12", "bioguide_id": "J000032", "fec_id": "H4TX18054", "state": "TX", "crp_id": "N00005818", "official_rss": "", "facebook_id": "169479190984", "party": "D", "email": "", "votesmart_id": "21692"}}, {"legislator": {"website": "http://lynnjenkins.house.gov/", "fax": "202-225-7986", "govtrack_id": "412284", "firstname": "Lynn", "chamber": "house", "middlename": "M.", "lastname": "Jenkins", "congress_office": "1122 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6601", "webform": "https://forms.house.gov/lynnjenkins/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepLynnJenkins", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lynn_Jenkins", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLynnJenkins", "birthdate": "1963-06-10", "bioguide_id": "J000290", "fec_id": "H8KS02090", "state": "KS", "crp_id": "N00029077", "official_rss": "", "facebook_id": "replynnjenkins", "party": "R", "email": "", "votesmart_id": "18594"}}, {"legislator": {"website": "http://www.johanns.senate.gov", "fax": "202-228-0436", "govtrack_id": "412320", "firstname": "Mike", "chamber": "senate", "middlename": "O.", "lastname": "Johanns", "congress_office": "404 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4224", "webform": "http://www.johanns.senate.gov/public/?p=ContactSenatorJohanns", "youtube_url": "http://www.youtube.com/SenatorMikeJohanns", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Johanns", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "Mike_Johanns", "birthdate": "1950-06-18", "bioguide_id": "J000291", "fec_id": "S8NE00117", "state": "NE", "crp_id": "N00029444", "official_rss": "", "facebook_id": "MikeJohanns", "party": "R", "email": "", "votesmart_id": "21309"}}, {"legislator": {"website": "http://billjohnson.house.gov/", "fax": "202-225-5907", "govtrack_id": "412460", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Johnson", "congress_office": "317 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5705", "webform": "", "youtube_url": "http://www.youtube.com/repbilljohnson", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Johnson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repbilljohnson", "birthdate": "1954-11-10", "bioguide_id": "J000292", "fec_id": "H0OH06189", "state": "OH", "crp_id": "N00032088", "official_rss": "", "facebook_id": "RepBillJohnson", "party": "R", "email": "", "votesmart_id": "120649"}}, {"legislator": {"website": "http://ebjohnson.house.gov/", "fax": "202-226-1477", "govtrack_id": "400204", "firstname": "Eddie", "chamber": "house", "middlename": "Bernice", "lastname": "Johnson", "congress_office": "2468 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8885", "webform": "http://www.house.gov/ebjohnson/IMA/issue_subscribe.shtml", "youtube_url": "http://www.youtube.com/RepEddieBJohnson", "nickname": "", "gender": "F", "district": "30", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Eddie_Bernice_Johnson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepEBJ", "birthdate": "1935-12-03", "bioguide_id": "J000126", "fec_id": "H2TX00015", "state": "TX", "crp_id": "N00008122", "official_rss": "", "facebook_id": "CongresswomanEBJtx30", "party": "D", "email": "", "votesmart_id": "27098"}}, {"legislator": {"website": "http://hankjohnson.house.gov/", "fax": "202-226-0691", "govtrack_id": "412199", "firstname": "Henry", "chamber": "house", "middlename": "C.", "lastname": "Johnson", "congress_office": "1427 Longworth House Office Building", "eventful_id": "", "phone": "202-225-1605", "webform": "http://hankjohnson.house.gov/contact_hank_write.shtml", "youtube_url": "http://www.youtube.com/RepHankJohnson", "nickname": "Hank", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Henry_Johnson", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "RepHankJohnson", "birthdate": "1954-10-02", "bioguide_id": "J000288", "fec_id": "H6GA04129", "state": "GA", "crp_id": "N00027848", "official_rss": "", "facebook_id": "115356957005", "party": "D", "email": "", "votesmart_id": "68070"}}, {"legislator": {"website": "http://www.ronjohnson.senate.gov/", "fax": "", "govtrack_id": "412496", "firstname": "Ron", "chamber": "senate", "middlename": "", "lastname": "Johnson", "congress_office": "386 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5323", "webform": "http://www.ronjohnson.senate.gov/public/index.cfm/contact", "youtube_url": "", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Ron_Johnson", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenRonJohnson", "birthdate": "1955-04-08", "bioguide_id": "J000293", "fec_id": "S0WI00197", "state": "WI", "crp_id": "N00032546", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "126217"}}, {"legislator": {"website": "http://samjohnson.house.gov", "fax": "202-225-1485", "govtrack_id": "400206", "firstname": "Samuel", "chamber": "house", "middlename": "Robert", "lastname": "Johnson", "congress_office": "1211 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4201", "webform": "http://www.house.gov/formsamjohnson/IMA/issue.htm", "youtube_url": "http://www.youtube.com/RepSamJohnson", "nickname": "Sam", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Samuel_Johnson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "SamsPressShop", "birthdate": "1930-10-11", "bioguide_id": "J000174", "fec_id": "H2TX03118", "state": "TX", "crp_id": "N00008028", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "27079"}}, {"legislator": {"website": "http://www.johnson.senate.gov/", "fax": "202-228-5765", "govtrack_id": "300058", "firstname": "Tim", "chamber": "senate", "middlename": "P.", "lastname": "Johnson", "congress_office": "136 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5842", "webform": "http://www.johnson.senate.gov/public/index.cfm?p=Contact", "youtube_url": "http://www.youtube.com/senatorjohnson", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Johnson", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenJohnsonSD", "birthdate": "1946-12-28", "bioguide_id": "J000177", "fec_id": "S6SD00051", "state": "SD", "crp_id": "N00010084", "official_rss": "", "facebook_id": "10239811690", "party": "D", "email": "", "votesmart_id": "27067"}}, {"legislator": {"website": "http://timjohnson.house.gov/", "fax": "202-228-5765", "govtrack_id": "400207", "firstname": "Timothy", "chamber": "house", "middlename": "V.", "lastname": "Johnson", "congress_office": "1207 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2371", "webform": "http://www.house.gov/timjohnson/contact/index.shtml", "youtube_url": "http://www.youtube.com/RepTimVJohnson", "nickname": "Tim", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Timothy_Johnson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTimJohnson", "birthdate": "1946-07-23", "bioguide_id": "J000285", "fec_id": "H0IL15053", "state": "IL", "crp_id": "N00012890", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "6338"}}, {"legislator": {"website": "http://jones.house.gov/", "fax": "202-225-3286", "govtrack_id": "400209", "firstname": "Walter", "chamber": "house", "middlename": "Beaman", "lastname": "Jones", "congress_office": "2333 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3415", "webform": "http://jones.house.gov/contact_form_email.cfm", "youtube_url": "http://www.youtube.com/RepWalterJones", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Walter_Beaman_Jones", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "RepWalterJones", "birthdate": "1943-02-10", "bioguide_id": "J000255", "fec_id": "H2NC01081", "state": "NC", "crp_id": "N00002299", "official_rss": "", "facebook_id": "15083070102", "party": "R", "email": "", "votesmart_id": "21785"}}, {"legislator": {"website": "http://jordan.house.gov", "fax": "202-226-0577", "govtrack_id": "412226", "firstname": "James", "chamber": "house", "middlename": "", "lastname": "Jordan", "congress_office": "1524 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2676", "webform": "http://jordan.house.gov/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/RepJimJordan", "nickname": "Jim", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Jordan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Jim_Jordan", "birthdate": "1964-02-17", "bioguide_id": "J000289", "fec_id": "H6OH04082", "state": "OH", "crp_id": "N00027894", "official_rss": "", "facebook_id": "repjimjordan", "party": "R", "email": "", "votesmart_id": "8158"}}, {"legislator": {"website": "http://kaptur.house.gov/", "fax": "202-225-7711", "govtrack_id": "400211", "firstname": "Marcy", "chamber": "house", "middlename": "", "lastname": "Kaptur", "congress_office": "2186 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4146", "webform": "http://www.kaptur.house.gov/index.php?option=com_content&task=view&id=152", "youtube_url": "http://www.youtube.com/RepKaptur", "nickname": "", "gender": "F", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Marcy_Kaptur", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1946-06-17", "bioguide_id": "K000009", "fec_id": "H2OH09031", "state": "OH", "crp_id": "N00003522", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "27016"}}, {"legislator": {"website": "http://keating.house.gov/", "fax": "202- 225-5658", "govtrack_id": "412435", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Keating", "congress_office": "315 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3111", "webform": "", "youtube_url": "http://www.youtube.com/user/RepBillKeating", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Keating", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "USRep_Keating", "birthdate": "1952-09-06", "bioguide_id": "K000375", "fec_id": "H0MA10082", "state": "MA", "crp_id": "N00031933", "official_rss": "", "facebook_id": "100000126864295", "party": "D", "email": "", "votesmart_id": "4743"}}, {"legislator": {"website": "http://kelly.house.gov/", "fax": "202-225-3103", "govtrack_id": "412465", "firstname": "George", "chamber": "house", "middlename": "J", "lastname": "Kelly", "congress_office": "515 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5406", "webform": "", "youtube_url": "http://www.youtube.com/repmikekelly", "nickname": "Mike", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Kelly", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1948-05-10", "bioguide_id": "K000376", "fec_id": "H0PA03271", "state": "PA", "crp_id": "N00031647", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "119463"}}, {"legislator": {"website": "http://www.kerry.senate.gov/", "fax": "202-224-8525", "govtrack_id": "300060", "firstname": "John", "chamber": "senate", "middlename": "Forbes", "lastname": "Kerry", "congress_office": "218 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2742", "webform": "http://www.kerry.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorkerry", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Kerry", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "JohnKerry", "birthdate": "1943-12-11", "bioguide_id": "K000148", "fec_id": "S4MA00069", "state": "MA", "crp_id": "N00000245", "official_rss": "", "facebook_id": "johnkerry", "party": "D", "email": "", "votesmart_id": "53306"}}, {"legislator": {"website": "http://kildee.house.gov/", "fax": "202-225-6393", "govtrack_id": "400216", "firstname": "Dale", "chamber": "house", "middlename": "E.", "lastname": "Kildee", "congress_office": "2107 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3611", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/repdalekildee", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dale_Kildee", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1929-09-16", "bioguide_id": "K000172", "fec_id": "H6MI07108", "state": "MI", "crp_id": "N00004070", "official_rss": "", "facebook_id": "107229849424", "party": "D", "email": "", "votesmart_id": "26909"}}, {"legislator": {"website": "http://kind.house.gov/", "fax": "202-225-5739", "govtrack_id": "400218", "firstname": "Ronald", "chamber": "house", "middlename": "James", "lastname": "Kind", "congress_office": "1406 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5506", "webform": "http://www.house.gov/kind/contact.shtml", "youtube_url": "http://www.youtube.com/repronkind", "nickname": "Ron", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ronald_James_Kind", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repronkind", "birthdate": "1963-03-16", "bioguide_id": "K000188", "fec_id": "H6WI03099", "state": "WI", "crp_id": "N00004403", "official_rss": "", "facebook_id": "repronkind", "party": "D", "email": "", "votesmart_id": "630"}}, {"legislator": {"website": "http://peteking.house.gov/", "fax": "202-226-2279", "govtrack_id": "400219", "firstname": "Peter", "chamber": "house", "middlename": "T.", "lastname": "King", "congress_office": "339 Cannon House Office Building", "eventful_id": "", "phone": "202-225-7896", "webform": "http://peteking.house.gov/zip.shtml", "youtube_url": "http://www.youtube.com/RepPeterKing", "nickname": "Pete", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_King", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepPeteKing", "birthdate": "1944-04-05", "bioguide_id": "K000210", "fec_id": "H2NY03089", "state": "NY", "crp_id": "N00001193", "official_rss": "", "facebook_id": "reppeteking", "party": "R", "email": "", "votesmart_id": "26968"}}, {"legislator": {"website": "http://steveking.house.gov/", "fax": "202-225-3193", "govtrack_id": "400220", "firstname": "Steve", "chamber": "house", "middlename": "A.", "lastname": "King", "congress_office": "1131 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4426", "webform": "http://www.house.gov/steveking/email.shtm", "youtube_url": "http://www.youtube.com/RepSteveKing", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_King", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "stevekingia", "birthdate": "1949-05-28", "bioguide_id": "K000362", "fec_id": "H2IA05072", "state": "IA", "crp_id": "N00025237", "official_rss": "", "facebook_id": "SteveKingIA", "party": "R", "email": "", "votesmart_id": "10853"}}, {"legislator": {"website": "http://kingston.house.gov/", "fax": "202-226-2269", "govtrack_id": "400221", "firstname": "Jack", "chamber": "house", "middlename": "", "lastname": "Kingston", "congress_office": "2372 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5831", "webform": "http://kingston.house.gov/ContactForm/", "youtube_url": "http://www.youtube.com/JackKingston", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jack_Kingston", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JackKingston", "birthdate": "1955-04-24", "bioguide_id": "K000220", "fec_id": "H2GA01157", "state": "GA", "crp_id": "N00002656", "official_rss": "", "facebook_id": "JackKingston", "party": "R", "email": "", "votesmart_id": "26816"}}, {"legislator": {"website": "http://kinzinger.house.gov/", "fax": "202- 225-3521", "govtrack_id": "412421", "firstname": "Adam", "chamber": "house", "middlename": "", "lastname": "Kinzinger", "congress_office": "1218 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3635", "webform": "", "youtube_url": "http://www.youtube.com/RepAdamKinzinger", "nickname": "", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Adam_Kinzinger", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKinzinger", "birthdate": "1978-02-27", "bioguide_id": "K000378", "fec_id": "H0IL11052", "state": "IL", "crp_id": "N00030667", "official_rss": "", "facebook_id": "187811174579106", "party": "R", "email": "", "votesmart_id": "116559"}}, {"legislator": {"website": "http://www.kirk.senate.gov", "fax": "", "govtrack_id": "400222", "firstname": "Mark", "chamber": "senate", "middlename": "Steven", "lastname": "Kirk", "congress_office": "524 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2854", "webform": "http://www.kirk.senate.gov/?p=contact", "youtube_url": "", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Kirk", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "senatorkirk", "birthdate": "1959-09-15", "bioguide_id": "K000360", "fec_id": "H0IL10120", "state": "IL", "crp_id": "N00012539", "official_rss": "", "facebook_id": "SenatorKirk", "party": "R", "email": "", "votesmart_id": "33502"}}, {"legislator": {"website": "http://kissell.house.gov/", "fax": "202-225-4036", "govtrack_id": "412287", "firstname": "Lawrence", "chamber": "house", "middlename": "Webb", "lastname": "Kissell", "congress_office": "1632 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3715", "webform": "https://forms.house.gov/kissell/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepLarryKissell", "nickname": "Larry", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lawrence_Kissell", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLarryKissell", "birthdate": "1951-01-31", "bioguide_id": "K000369", "fec_id": "H6NC08111", "state": "NC", "crp_id": "N00028859", "official_rss": "", "facebook_id": "11156132835", "party": "D", "email": "", "votesmart_id": "57769"}}, {"legislator": {"website": "http://kline.house.gov/", "fax": "202-225-2595", "govtrack_id": "400224", "firstname": "John", "chamber": "house", "middlename": "P.", "lastname": "Kline", "congress_office": "2439 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2271", "webform": "http://kline.house.gov/index.cfm?FuseAction=ContactInformation.ContactForm&To=mn02hwyr@housemail.house.gov&CFID=22307054&CFTOKEN=28173710", "youtube_url": "http://www.youtube.com/RepJohnKline", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Kline", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjohnkline", "birthdate": "1947-09-06", "bioguide_id": "K000363", "fec_id": "H8MN06047", "state": "MN", "crp_id": "N00004436", "official_rss": "", "facebook_id": "16149655054", "party": "R", "email": "", "votesmart_id": "20311"}}, {"legislator": {"website": "http://www.klobuchar.senate.gov/", "fax": "202-228-2186", "govtrack_id": "412242", "firstname": "Amy", "chamber": "senate", "middlename": "", "lastname": "Klobuchar", "congress_office": "302 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3244", "webform": "http://www.klobuchar.senate.gov/emailamy.cfm", "youtube_url": "http://www.youtube.com/senatorklobuchar", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Amy_Klobuchar", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "", "birthdate": "1960-05-25", "bioguide_id": "K000367", "fec_id": "S6MN00267", "state": "MN", "crp_id": "N00027500", "official_rss": "", "facebook_id": "7606381190", "party": "D", "email": "", "votesmart_id": "65092"}}, {"legislator": {"website": "http://www.kohl.senate.gov/", "fax": "202-224-9787", "govtrack_id": "300061", "firstname": "Herbert", "chamber": "senate", "middlename": "H.", "lastname": "Kohl", "congress_office": "330 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5653", "webform": "http://www.kohl.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenatorKohl", "nickname": "Herb", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Herbert_Kohl", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "", "birthdate": "1935-02-07", "bioguide_id": "K000305", "fec_id": "S6WI00061", "state": "WI", "crp_id": "N00004309", "official_rss": "", "facebook_id": "herbkohl", "party": "D", "email": "", "votesmart_id": "53362"}}, {"legislator": {"website": "http://kucinich.house.gov/", "fax": "202-225-5745", "govtrack_id": "400227", "firstname": "Dennis", "chamber": "house", "middlename": "J.", "lastname": "Kucinich", "congress_office": "2445 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5871", "webform": "http://kucinich.house.gov/Contact/Starter.htm", "youtube_url": "http://www.youtube.com/djkucinich", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dennis_Kucinich", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Dennis_Kucinich", "birthdate": "1946-10-08", "bioguide_id": "K000336", "fec_id": "H6OH23033", "state": "OH", "crp_id": "N00003572", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "318"}}, {"legislator": {"website": "http://www.kyl.senate.gov/", "fax": "202-224-2207", "govtrack_id": "300062", "firstname": "Jon", "chamber": "senate", "middlename": "", "lastname": "Kyl", "congress_office": "730 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4521", "webform": "http://www.kyl.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenJonKyl", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jon_Kyl", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "senjonkyl", "birthdate": "1942-04-25", "bioguide_id": "K000352", "fec_id": "S4AZ00030", "state": "AZ", "crp_id": "N00006406", "official_rss": "", "facebook_id": "jonkyl", "party": "R", "email": "", "votesmart_id": "26721"}}, {"legislator": {"website": "http://labrador.house.gov/", "fax": "202-225-3029", "govtrack_id": "412419", "firstname": "Raul", "chamber": "house", "middlename": "", "lastname": "Labrador", "congress_office": "1523 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6611", "webform": "", "youtube_url": "http://www.youtube.com/user/RepLabrador", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Raul_Labrador", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Raul_Labrador", "birthdate": "1967-12-08", "bioguide_id": "L000573", "fec_id": "H0ID01253", "state": "ID", "crp_id": "N00031377", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "57391"}}, {"legislator": {"website": "http://lamborn.house.gov/", "fax": "202-226-2638", "govtrack_id": "412191", "firstname": "Douglas", "chamber": "house", "middlename": "L.", "lastname": "Lamborn", "congress_office": "437 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4422", "webform": "http://lamborn.house.gov/ZipAuth.aspx", "youtube_url": "http://www.youtube.com/CongressmanLamborn", "nickname": "Doug", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Douglas_Lamborn", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1954-05-24", "bioguide_id": "L000564", "fec_id": "H6CO05159", "state": "CO", "crp_id": "N00028133", "official_rss": "", "facebook_id": "CongressmanDougLamborn", "party": "R", "email": "", "votesmart_id": "2698"}}, {"legislator": {"website": "http://lance.house.gov/", "fax": "202-225-9460", "govtrack_id": "412290", "firstname": "Leonard", "chamber": "house", "middlename": "", "lastname": "Lance", "congress_office": "426 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5361", "webform": "https://forms.house.gov/lance/contact-form.shtml", "youtube_url": "http://www.youtube.com/congressmanlance", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Leonard_Lance", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-06-25", "bioguide_id": "L000567", "fec_id": "H6NJ12136", "state": "NJ", "crp_id": "N00000898", "official_rss": "", "facebook_id": "CongressmanLance", "party": "R", "email": "", "votesmart_id": "4443"}}, {"legislator": {"website": "http://www.landrieu.senate.gov/", "fax": "202-224-9735", "govtrack_id": "300063", "firstname": "Mary", "chamber": "senate", "middlename": "L.", "lastname": "Landrieu", "congress_office": "431 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-5824", "webform": "http://www.landrieu.senate.gov/about/contact.cfm", "youtube_url": "http://www.youtube.com/SenatorLandrieu", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mary_Landrieu", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "senlandrieu", "birthdate": "1955-11-23", "bioguide_id": "L000550", "fec_id": "S6LA00227", "state": "LA", "crp_id": "N00005395", "official_rss": "", "facebook_id": "senatormarylandrieu", "party": "D", "email": "", "votesmart_id": "661"}}, {"legislator": {"website": "http://landry.house.gov/", "fax": "202- 226-3944", "govtrack_id": "412433", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Landry", "congress_office": "206 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4031", "webform": "", "youtube_url": "http://www.youtube.com/repjefflandry", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Landry", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjefflandry", "birthdate": "1970-12-23", "bioguide_id": "L000574", "fec_id": "H0LA03141", "state": "LA", "crp_id": "N00031503", "official_rss": "", "facebook_id": "repjefflandry", "party": "R", "email": "", "votesmart_id": "93509"}}, {"legislator": {"website": "http://langevin.house.gov/", "fax": "202-225-5976", "govtrack_id": "400230", "firstname": "James", "chamber": "house", "middlename": "R.", "lastname": "Langevin", "congress_office": "109 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2735", "webform": "http://langevin.house.gov/comments.shtml", "youtube_url": "http://www.youtube.com/jimlangevin", "nickname": "Jim", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Langevin", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jimlangevin", "birthdate": "1964-04-22", "bioguide_id": "L000559", "fec_id": "H0RI02139", "state": "RI", "crp_id": "N00009724", "official_rss": "", "facebook_id": "6578978441", "party": "D", "email": "", "votesmart_id": "55787"}}, {"legislator": {"website": "http://lankford.house.gov/", "fax": "202-226-1463", "govtrack_id": "412464", "firstname": "James", "chamber": "house", "middlename": "", "lastname": "Lankford", "congress_office": "509 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2132", "webform": "", "youtube_url": "http://www.youtube.com/replankford", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Lankford", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "replankford", "birthdate": "1968-03-04", "bioguide_id": "L000575", "fec_id": "H0OK05114", "state": "OK", "crp_id": "N00031129", "official_rss": "", "facebook_id": "RepLankford", "party": "R", "email": "", "votesmart_id": "124938"}}, {"legislator": {"website": "http://house.gov/larsen/", "fax": "202-225-4420", "govtrack_id": "400232", "firstname": "Rick", "chamber": "house", "middlename": "", "lastname": "Larsen", "congress_office": "108 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2605", "webform": "http://www.house.gov/larsen/contact/", "youtube_url": "http://www.youtube.com/congressmanlarsen", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rick_Larsen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "larsenrick", "birthdate": "1965-06-15", "bioguide_id": "L000560", "fec_id": "H0WA02080", "state": "WA", "crp_id": "N00009759", "official_rss": "", "facebook_id": "RepRickLarsen", "party": "D", "email": "", "votesmart_id": "56231"}}, {"legislator": {"website": "http://larson.house.gov/", "fax": "202-225-1031", "govtrack_id": "400233", "firstname": "John", "chamber": "house", "middlename": "B.", "lastname": "Larson", "congress_office": "1501 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2265", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepJohnLarson", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Larson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjohnlarson", "birthdate": "1948-07-22", "bioguide_id": "L000557", "fec_id": "H8CT01046", "state": "CT", "crp_id": "N00000575", "official_rss": "", "facebook_id": "RepJohnLarson", "party": "D", "email": "", "votesmart_id": "17188"}}, {"legislator": {"website": "http://tomlatham.house.gov", "fax": "202-225-3301", "govtrack_id": "400234", "firstname": "Thomas", "chamber": "house", "middlename": "P.", "lastname": "Latham", "congress_office": "2217 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5476", "webform": "http://www.tomlatham.house.gov/Contact/", "youtube_url": "http://www.youtube.com/CongressmanTomLatham", "nickname": "Tom", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Thomas_Latham", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "TomLatham", "birthdate": "1948-07-14", "bioguide_id": "L000111", "fec_id": "H4IA05102", "state": "IA", "crp_id": "N00004227", "official_rss": "", "facebook_id": "700499667", "party": "R", "email": "", "votesmart_id": "22175"}}, {"legislator": {"website": "http://latourette.house.gov/", "fax": "202-225-3307", "govtrack_id": "400235", "firstname": "Steven", "chamber": "house", "middlename": "C.", "lastname": "LaTourette", "congress_office": "2371 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5731", "webform": "http://latourette.house.gov/ContactSteve.aspx", "youtube_url": "http://www.youtube.com/StevenLatourette", "nickname": "", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_LaTourette", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "SteveLaTourette", "birthdate": "1954-07-22", "bioguide_id": "L000553", "fec_id": "H4OH19036", "state": "OH", "crp_id": "N00003545", "official_rss": "", "facebook_id": "stevenlatourette", "party": "R", "email": "", "votesmart_id": "21798"}}, {"legislator": {"website": "http://latta.house.gov", "fax": "202-225-1985", "govtrack_id": "412256", "firstname": "Robert", "chamber": "house", "middlename": "Edward", "lastname": "Latta", "congress_office": "1323 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6405", "webform": "http://latta.house.gov/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/CongressmanBobLatta", "nickname": "Bob", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Latta", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "boblatta", "birthdate": "1956-04-18", "bioguide_id": "L000566", "fec_id": "H8OH05036", "state": "OH", "crp_id": "N00012233", "official_rss": "", "facebook_id": "boblatta", "party": "R", "email": "", "votesmart_id": "9926"}}, {"legislator": {"website": "http://www.lautenberg.senate.gov/", "fax": "202-228-4054", "govtrack_id": "300064", "firstname": "Frank", "chamber": "senate", "middlename": "R.", "lastname": "Lautenberg", "congress_office": "324 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3224", "webform": "http://www.lautenberg.senate.gov/contact/routing.cfm", "youtube_url": "http://www.youtube.com/franklautenberg", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_Lautenberg", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "franklautenberg", "birthdate": "1924-01-23", "bioguide_id": "L000123", "fec_id": "S2NJ00080", "state": "NJ", "crp_id": "N00000659", "official_rss": "", "facebook_id": "franklautenberg", "party": "D", "email": "", "votesmart_id": "53324"}}, {"legislator": {"website": "http://www.leahy.senate.gov/", "fax": "202-224-3479", "govtrack_id": "300065", "firstname": "Patrick", "chamber": "senate", "middlename": "J.", "lastname": "Leahy", "congress_office": "437 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4242", "webform": "http://www.leahy.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorPatrickLeahy", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Patrick_Leahy", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenatorLeahy", "birthdate": "1940-03-31", "bioguide_id": "L000174", "fec_id": "S4VT00017", "state": "VT", "crp_id": "N00009918", "official_rss": "", "facebook_id": "patrickleahy", "party": "D", "email": "", "votesmart_id": "53353"}}, {"legislator": {"website": "http://lee.house.gov/", "fax": "202-225-9817", "govtrack_id": "400237", "firstname": "Barbara", "chamber": "house", "middlename": "J.", "lastname": "Lee", "congress_office": "2267 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2661", "webform": "http://lee.house.gov/?sectionid=44&sectiontree=18,44", "youtube_url": "http://www.youtube.com/RepLee", "nickname": "", "gender": "F", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Barbara_Lee", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repbarbaralee", "birthdate": "1946-07-16", "bioguide_id": "L000551", "fec_id": "H8CA09060", "state": "CA", "crp_id": "N00008046", "official_rss": "", "facebook_id": "RepBarbaraLee", "party": "D", "email": "", "votesmart_id": "8315"}}, {"legislator": {"website": "http://www.lee.senate.gov/", "fax": "", "govtrack_id": "412495", "firstname": "Mike", "chamber": "senate", "middlename": "", "lastname": "Lee", "congress_office": "316 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5444", "webform": "http://www.lee.senate.gov/public/index.cfm/contact", "youtube_url": "http://youtube.com/senatormikelee", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Lee", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenMikeLee", "birthdate": "1971-06-04", "bioguide_id": "L000577", "fec_id": "S0UT00165", "state": "UT", "crp_id": "N00031696", "official_rss": "", "facebook_id": "178081365556898", "party": "R", "email": "", "votesmart_id": "66395"}}, {"legislator": {"website": "http://www.levin.senate.gov/", "fax": "202-224-1388", "govtrack_id": "300066", "firstname": "Carl", "chamber": "senate", "middlename": "", "lastname": "Levin", "congress_office": "269 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-6221", "webform": "http://www.levin.senate.gov/contact/", "youtube_url": "http://www.youtube.com/sencarllevin", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Carl_Levin", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "sencarllevin", "birthdate": "1934-06-28", "bioguide_id": "L000261", "fec_id": "S8MI00158", "state": "MI", "crp_id": "N00001691", "official_rss": "", "facebook_id": "carllevin", "party": "D", "email": "", "votesmart_id": "53307"}}, {"legislator": {"website": "http://house.gov/levin/", "fax": "202-226-1033", "govtrack_id": "400238", "firstname": "Sander", "chamber": "house", "middlename": "M.", "lastname": "Levin", "congress_office": "1236 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4961", "webform": "http://www.house.gov/levin/levin_contact_email.shtml", "youtube_url": "http://www.youtube.com/MI12yes", "nickname": "Sandy", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sander_Levin", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repsandylevin", "birthdate": "1931-09-06", "bioguide_id": "L000263", "fec_id": "H2MI17023", "state": "MI", "crp_id": "N00003950", "official_rss": "", "facebook_id": "RepSandyLevin", "party": "D", "email": "", "votesmart_id": "26918"}}, {"legislator": {"website": "http://jerrylewis.house.gov/", "fax": "202-225-6498", "govtrack_id": "400239", "firstname": "Jerry", "chamber": "house", "middlename": "", "lastname": "Lewis", "congress_office": "2112 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5861", "webform": "http://www.house.gov/jerrylewis/IMA/WritetoRepresentativeLewis.htm", "youtube_url": "http://www.youtube.com/RepJerryLewis1", "nickname": "", "gender": "M", "district": "41", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jerry_Lewis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJerryLewis", "birthdate": "1934-10-21", "bioguide_id": "L000274", "fec_id": "H8CA37079", "state": "CA", "crp_id": "N00007087", "official_rss": "", "facebook_id": "141850062373", "party": "R", "email": "", "votesmart_id": "26769"}}, {"legislator": {"website": "http://johnlewis.house.gov/", "fax": "202-225-0351", "govtrack_id": "400240", "firstname": "John", "chamber": "house", "middlename": "R.", "lastname": "Lewis", "congress_office": "343 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3801", "webform": "http://www.house.gov/formjohnlewis/contact.html", "youtube_url": "http://www.youtube.com/RepJohnLewis", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Lewis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJohnLewis", "birthdate": "1940-02-21", "bioguide_id": "L000287", "fec_id": "H6GA05217", "state": "GA", "crp_id": "N00002577", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26820"}}, {"legislator": {"website": "http://www.lieberman.senate.gov/", "fax": "202-224-9750", "govtrack_id": "300067", "firstname": "Joseph", "chamber": "senate", "middlename": "I.", "lastname": "Lieberman", "congress_office": "706 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4041", "webform": "http://www.lieberman.senate.gov/index.cfm/contact/email-me-about-an-issue", "youtube_url": "http://www.youtube.com/SenatorJoeLieberman", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Joseph_Lieberman", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "JoeLieberman", "birthdate": "1942-02-24", "bioguide_id": "L000304", "fec_id": "S8CT00022", "state": "CT", "crp_id": "N00000616", "official_rss": "", "facebook_id": "joelieberman", "party": "I", "email": "", "votesmart_id": "53278"}}, {"legislator": {"website": "http://lipinski.house.gov/", "fax": "202-225-1012", "govtrack_id": "400630", "firstname": "Daniel", "chamber": "house", "middlename": "William", "lastname": "Lipinski", "congress_office": "1717 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5701", "webform": "http://www.house.gov/formlipinski/zipauth.html", "youtube_url": "http://www.youtube.com/lipinski03", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Lipinski", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1966-07-15", "bioguide_id": "L000563", "fec_id": "H4IL03077", "state": "IL", "crp_id": "N00027239", "official_rss": "", "facebook_id": "repdanlipinski", "party": "D", "email": "", "votesmart_id": "33692"}}, {"legislator": {"website": "http://house.gov/lobiondo/", "fax": "202-225-3318", "govtrack_id": "400244", "firstname": "Frank", "chamber": "house", "middlename": "A.", "lastname": "LoBiondo", "congress_office": "2427 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6572", "webform": "http://www.house.gov/lobiondo/IMA/issue.htm", "youtube_url": "http://www.youtube.com/USRepFrankLoBiondo", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_LoBiondo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLoBiondo", "birthdate": "1946-05-12", "bioguide_id": "L000554", "fec_id": "H2NJ02037", "state": "NJ", "crp_id": "N00000851", "official_rss": "", "facebook_id": "FrankLoBiondo", "party": "R", "email": "", "votesmart_id": "21890"}}, {"legislator": {"website": "http://loebsack.house.gov/", "fax": "202-226-0757", "govtrack_id": "412209", "firstname": "Dave", "chamber": "house", "middlename": "W.", "lastname": "Loebsack", "congress_office": "1527 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6576", "webform": "http://loebsack.house.gov/contactform/", "youtube_url": "http://www.youtube.com/congressmanloebsack", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dave_Loebsack", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-12-23", "bioguide_id": "L000565", "fec_id": "H6IA02146", "state": "IA", "crp_id": "N00027741", "official_rss": "", "facebook_id": "DaveLoebsack", "party": "D", "email": "", "votesmart_id": "68964"}}, {"legislator": {"website": "http://lofgren.house.gov/", "fax": "202-225-3336", "govtrack_id": "400245", "firstname": "Zoe", "chamber": "house", "middlename": "", "lastname": "Lofgren", "congress_office": "1401 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3072", "webform": "http://lofgren.house.gov/emailform.shtml", "youtube_url": "", "nickname": "", "gender": "F", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Zoe_Lofgren", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepZoeLofgren", "birthdate": "1947-12-21", "bioguide_id": "L000397", "fec_id": "H4CA16049", "state": "CA", "crp_id": "N00007479", "official_rss": "", "facebook_id": "zoelofgren", "party": "D", "email": "", "votesmart_id": "21899"}}, {"legislator": {"website": "http://long.house.gov/", "fax": "202-225-5604", "govtrack_id": "412445", "firstname": "Billy", "chamber": "house", "middlename": "", "lastname": "Long", "congress_office": "1541 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6536", "webform": "", "youtube_url": "http://www.youtube.com/user/MOdistrict7", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Billy_Long", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BillyLongMO7", "birthdate": "1955-08-11", "bioguide_id": "L000576", "fec_id": "H0MO07113", "state": "MO", "crp_id": "N00030676", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "123401"}}, {"legislator": {"website": "http://lowey.house.gov", "fax": "202-225-0546", "govtrack_id": "400246", "firstname": "Nita", "chamber": "house", "middlename": "M.", "lastname": "Lowey", "congress_office": "2365 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6506", "webform": "http://lowey.house.gov/?sectionid=56&sectiontree=56", "youtube_url": "http://www.youtube.com/nitalowey", "nickname": "", "gender": "F", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nita_Lowey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "NitaLowey", "birthdate": "1937-07-05", "bioguide_id": "L000480", "fec_id": "H8NY20056", "state": "NY", "crp_id": "N00001024", "official_rss": "", "facebook_id": "158290607551599", "party": "D", "email": "", "votesmart_id": "26982"}}, {"legislator": {"website": "http://house.gov/lucas/", "fax": "202-225-8698", "govtrack_id": "400247", "firstname": "Frank", "chamber": "house", "middlename": "D.", "lastname": "Lucas", "congress_office": "2311 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5565", "webform": "http://www.house.gov/lucas/zipauth.htm", "youtube_url": "http://www.youtube.com/repfranklucas", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_Lucas", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1960-01-06", "bioguide_id": "L000491", "fec_id": "H4OK06056", "state": "OK", "crp_id": "N00005559", "official_rss": "", "facebook_id": "7872057395", "party": "R", "email": "", "votesmart_id": "27032"}}, {"legislator": {"website": "http://luetkemeyer.house.gov/", "fax": "202-225-5712", "govtrack_id": "412292", "firstname": "Blaine", "chamber": "house", "middlename": "", "lastname": "Luetkemeyer", "congress_office": "1740 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2956", "webform": "https://forms.house.gov/luetkemeyer/contact-form.shtml", "youtube_url": "http://www.youtube.com/BLuetkemeyer", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Blaine_Luetkemeyer", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-05-07", "bioguide_id": "L000569", "fec_id": "H8MO09153", "state": "MO", "crp_id": "N00030026", "official_rss": "", "facebook_id": "BlaineLuetkemeyer", "party": "R", "email": "", "votesmart_id": "20400"}}, {"legislator": {"website": "http://www.lugar.senate.gov/", "fax": "202-228-0360", "govtrack_id": "300070", "firstname": "Richard", "chamber": "senate", "middlename": "G.", "lastname": "Lugar", "congress_office": "306 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4814", "webform": "http://www.lugar.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorlugar", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Lugar", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "senatorlugar", "birthdate": "1932-04-04", "bioguide_id": "L000504", "fec_id": "S4IN00014", "state": "IN", "crp_id": "N00001764", "official_rss": "", "facebook_id": "senatorlugar", "party": "R", "email": "", "votesmart_id": "53292"}}, {"legislator": {"website": "http://lujan.house.gov/", "fax": "202-226-1528", "govtrack_id": "412293", "firstname": "Ben", "chamber": "house", "middlename": "Ray", "lastname": "Lujan", "congress_office": "330 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6190", "webform": "https://forms.house.gov/lujan/contact-form.shtml", "youtube_url": "http://www.youtube.com/Repbenraylujan", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ben_Lujan", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "repbenraylujan", "birthdate": "1972-06-07", "bioguide_id": "L000570", "fec_id": "H8NM03196", "state": "NM", "crp_id": "N00029562", "official_rss": "", "facebook_id": "RepBenRayLujan", "party": "D", "email": "", "votesmart_id": "102842"}}, {"legislator": {"website": "http://lummis.house.gov/", "fax": "202-225-3057", "govtrack_id": "412294", "firstname": "Cynthia", "chamber": "house", "middlename": "M.", "lastname": "Lummis", "congress_office": "113 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2311", "webform": "https://forms.house.gov/lummis/contact-form.shtml", "youtube_url": "http://www.youtube.com/CynthiaLummis", "nickname": "", "gender": "F", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Cynthia_Lummis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CynthiaLummis", "birthdate": "1954-09-10", "bioguide_id": "L000571", "fec_id": "H8WY00148", "state": "WY", "crp_id": "N00029788", "official_rss": "", "facebook_id": "152754318103332", "party": "R", "email": "", "votesmart_id": "15546"}}, {"legislator": {"website": "http://lungren.house.gov/", "fax": "202-226-1298", "govtrack_id": "400617", "firstname": "Daniel", "chamber": "house", "middlename": "E.", "lastname": "Lungren", "congress_office": "2313 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5716", "webform": "https://forms.house.gov/lungren/forms/email.shtml", "youtube_url": "http://www.youtube.com/RepLungrenCA03", "nickname": "Dan", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Lungren", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDanLungren", "birthdate": "1946-09-22", "bioguide_id": "L000517", "fec_id": "H6CA34112", "state": "CA", "crp_id": "N00011971", "official_rss": "", "facebook_id": "Dan.Lungren", "party": "R", "email": "", "votesmart_id": "16730"}}, {"legislator": {"website": "http://lynch.house.gov/", "fax": "202-225-3984", "govtrack_id": "400249", "firstname": "Stephen", "chamber": "house", "middlename": "F.", "lastname": "Lynch", "congress_office": "2348 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8273", "webform": "http://www.house.gov/writerep", "youtube_url": "", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Stephen_Lynch", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1955-03-31", "bioguide_id": "L000562", "fec_id": "H2MA09072", "state": "MA", "crp_id": "N00013855", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "4844"}}, {"legislator": {"website": "http://mack.house.gov/", "fax": "202-226-0439", "govtrack_id": "400622", "firstname": "Connie", "chamber": "house", "middlename": "", "lastname": "Mack", "congress_office": "115 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2536", "webform": "http://mack.house.gov/index.cfm?FuseAction=ContactConnie.ContactForm", "youtube_url": "http://www.youtube.com/RepConnieMack", "nickname": "", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Connie_Mack", "in_office": true, "senate_class": "", "name_suffix": "IV", "twitter_id": "RepConnieMack", "birthdate": "1967-08-12", "bioguide_id": "M001155", "fec_id": "H4FL14059", "state": "FL", "crp_id": "N00026425", "official_rss": "", "facebook_id": "RepConnieMack", "party": "R", "email": "", "votesmart_id": "53996"}}, {"legislator": {"website": "http://maloney.house.gov/", "fax": "202-225-4709", "govtrack_id": "400251", "firstname": "Carolyn", "chamber": "house", "middlename": "B.", "lastname": "Maloney", "congress_office": "2332 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-7944", "webform": "http://maloney.house.gov/index.php?option=com_email_form&Itemid=73", "youtube_url": "http://www.youtube.com/carolynbmaloney", "nickname": "", "gender": "F", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Carolyn_Maloney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "carolynbmaloney", "birthdate": "1948-02-19", "bioguide_id": "M000087", "fec_id": "H2NY14037", "state": "NY", "crp_id": "N00000078", "official_rss": "", "facebook_id": "RepCarolynMaloney", "party": "D", "email": "", "votesmart_id": "26978"}}, {"legislator": {"website": "http://www.manchin.senate.gov/", "fax": "", "govtrack_id": "412391", "firstname": "Joe", "chamber": "senate", "middlename": "", "lastname": "Manchin", "congress_office": "303 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3954", "webform": "http://www.manchin.senate.gov/contact_form.cfm", "youtube_url": "", "nickname": "Joe", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Manchin", "in_office": true, "senate_class": "I", "name_suffix": "III", "twitter_id": "Sen_JoeManchin", "birthdate": "1947-08-24", "bioguide_id": "M001183", "fec_id": "S0WV00090", "state": "WV", "crp_id": "N00032838", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "7547"}}, {"legislator": {"website": "http://manzullo.house.gov/", "fax": "202-225-5284", "govtrack_id": "400252", "firstname": "Donald", "chamber": "house", "middlename": "A.", "lastname": "Manzullo", "congress_office": "2228 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5676", "webform": "http://manzullo.house.gov/zipauth.aspx", "youtube_url": "http://www.youtube.com/repmanzullo", "nickname": "Don", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Donald_Manzullo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "donmanzullo", "birthdate": "1944-03-24", "bioguide_id": "M001138", "fec_id": "H0IL16085", "state": "IL", "crp_id": "N00004905", "official_rss": "", "facebook_id": "donmanzullo", "party": "R", "email": "", "votesmart_id": "26843"}}, {"legislator": {"website": "http://marchant.house.gov/", "fax": "202-225-0074", "govtrack_id": "400656", "firstname": "Kenny", "chamber": "house", "middlename": "E.", "lastname": "Marchant", "congress_office": "1110 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6605", "webform": "http://marchant.house.gov/emailkenny.shtml", "youtube_url": "http://www.youtube.com/RepKennyMarchant", "nickname": "", "gender": "M", "district": "24", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kenny_Marchant", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepKenMarchant", "birthdate": "1951-02-23", "bioguide_id": "M001158", "fec_id": "H4TX24094", "state": "TX", "crp_id": "N00026710", "official_rss": "", "facebook_id": "RepKennyMarchant", "party": "R", "email": "", "votesmart_id": "5549"}}, {"legislator": {"website": "http://marino.house.gov/", "fax": "202-225-9594 ", "govtrack_id": "412468", "firstname": "Thomas", "chamber": "house", "middlename": "", "lastname": "Marino", "congress_office": "410 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3731", "webform": "", "youtube_url": "http://www.youtube.com/user/RepMarino", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Marino", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTomMarino", "birthdate": "1952-08-13", "bioguide_id": "M001179", "fec_id": "H0PA10078", "state": "PA", "crp_id": "N00031777", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "119478"}}, {"legislator": {"website": "http://markey.house.gov/", "fax": "202-226-0092", "govtrack_id": "400253", "firstname": "Edward", "chamber": "house", "middlename": "J.", "lastname": "Markey", "congress_office": "2108 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2836", "webform": "http://markey.house.gov/index.php?option=com_email_form&Itemid=124", "youtube_url": "http://www.youtube.com/RepMarkey", "nickname": "Ed", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Edward_Markey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "markeymemo", "birthdate": "1946-07-11", "bioguide_id": "M000133", "fec_id": "H6MA07101", "state": "MA", "crp_id": "N00000270", "official_rss": "", "facebook_id": "EdJMarkey", "party": "D", "email": "", "votesmart_id": "26900"}}, {"legislator": {"website": "http://matheson.house.gov/", "fax": "202-225-5638", "govtrack_id": "400255", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Matheson", "congress_office": "2434 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3011", "webform": "https://forms.house.gov/matheson/contact.shtml", "youtube_url": "http://www.youtube.com/RepJimMatheson", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Matheson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJimMatheson", "birthdate": "1960-03-21", "bioguide_id": "M001142", "fec_id": "H0UT02096", "state": "UT", "crp_id": "N00009753", "official_rss": "", "facebook_id": "131888123517015", "party": "D", "email": "", "votesmart_id": "50722"}}, {"legislator": {"website": "http://matsui.house.gov/", "fax": "202-225-0566", "govtrack_id": "400663", "firstname": "Doris", "chamber": "house", "middlename": "O.", "lastname": "Matsui", "congress_office": "222 Cannon House Office Building", "eventful_id": "", "phone": "202-225-7163", "webform": "https://forms.house.gov/matsui/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepDorisMatsui", "nickname": "", "gender": "F", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Doris_Matsui", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DorisMatsui", "birthdate": "1944-09-25", "bioguide_id": "M001163", "fec_id": "H6CA05195", "state": "CA", "crp_id": "N00027459", "official_rss": "", "facebook_id": "doris.matsui", "party": "D", "email": "", "votesmart_id": "28593"}}, {"legislator": {"website": "http://www.mccain.senate.gov/", "fax": "202-228-2862", "govtrack_id": "300071", "firstname": "John", "chamber": "senate", "middlename": "Sidney", "lastname": "McCain", "congress_office": "241 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2235", "webform": "http://www.mccain.senate.gov/public/index.cfm?FuseAction=Contact.ContactForm", "youtube_url": "http://www.youtube.com/SenatorJohnMcCain", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_McCain", "in_office": true, "senate_class": "III", "name_suffix": "III", "twitter_id": "SenJohnMcCain", "birthdate": "1936-08-29", "bioguide_id": "M000303", "fec_id": "S6AZ00019", "state": "AZ", "crp_id": "N00006424", "official_rss": "", "facebook_id": "johnmccain", "party": "R", "email": "", "votesmart_id": "53270"}}, {"legislator": {"website": "http://carolynmccarthy.house.gov/", "fax": "202-225-5758", "govtrack_id": "400257", "firstname": "Carolyn", "chamber": "house", "middlename": "", "lastname": "McCarthy", "congress_office": "2346 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5516", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/CarolynMcCarthy", "nickname": "", "gender": "F", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Carolyn_McCarthy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMcCarthyNY", "birthdate": "1944-01-05", "bioguide_id": "M000309", "fec_id": "H6NY04112", "state": "NY", "crp_id": "N00001148", "official_rss": "", "facebook_id": "128261203867188", "party": "D", "email": "", "votesmart_id": "693"}}, {"legislator": {"website": "http://kevinmccarthy.house.gov/", "fax": "202-225-2908", "govtrack_id": "412190", "firstname": "Kevin", "chamber": "house", "middlename": "", "lastname": "McCarthy", "congress_office": "326 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2915", "webform": "http://kevinmccarthy.house.gov/showpage.asp?ID=69", "youtube_url": "http://www.youtube.com/RepKevinMcCarthy", "nickname": "", "gender": "M", "district": "22", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kevin_McCarthy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "GOPWhip", "birthdate": "1965-01-26", "bioguide_id": "M001165", "fec_id": "H6CA22125", "state": "CA", "crp_id": "N00028152", "official_rss": "", "facebook_id": "CongressmanKevinMcCarthy", "party": "R", "email": "", "votesmart_id": "28918"}}, {"legislator": {"website": "http://www.mccaskill.senate.gov/", "fax": "202-228-6326", "govtrack_id": "412243", "firstname": "Claire", "chamber": "senate", "middlename": "", "lastname": "McCaskill", "congress_office": "506 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6154", "webform": "http://www.mccaskill.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/senatormccaskill", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Claire_McCaskill", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "clairecmc", "birthdate": "1953-07-24", "bioguide_id": "M001170", "fec_id": "S6MO00305", "state": "MO", "crp_id": "N00027694", "official_rss": "", "facebook_id": "senatormccaskill", "party": "D", "email": "", "votesmart_id": "2109"}}, {"legislator": {"website": "http://mccaul.house.gov/", "fax": "202-225-5955", "govtrack_id": "400654", "firstname": "Michael", "chamber": "house", "middlename": "T.", "lastname": "McCaul", "congress_office": "131 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2401", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/MichaelTMcCaul", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_McCaul", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "McCaulPressShop", "birthdate": "1962-01-14", "bioguide_id": "M001157", "fec_id": "H4TX10093", "state": "TX", "crp_id": "N00026460", "official_rss": "", "facebook_id": "michaeltmccaul", "party": "R", "email": "", "votesmart_id": "49210"}}, {"legislator": {"website": "http://mcclintock.house.gov/", "fax": "202-225-5444", "govtrack_id": "412295", "firstname": "Tom", "chamber": "house", "middlename": "", "lastname": "McClintock", "congress_office": "428 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2511", "webform": "https://forms.house.gov/mcclintock/contact-form.shtml", "youtube_url": "http://www.youtube.com/McClintockCA04", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_McClintock", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMcClintock", "birthdate": "1956-07-10", "bioguide_id": "M001177", "fec_id": "H8CA04152", "state": "CA", "crp_id": "N00006863", "official_rss": "", "facebook_id": "81125319109", "party": "R", "email": "", "votesmart_id": "9715"}}, {"legislator": {"website": "http://mccollum.house.gov/", "fax": "202-225-1968", "govtrack_id": "400259", "firstname": "Betty", "chamber": "house", "middlename": "", "lastname": "McCollum", "congress_office": "1714 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6631", "webform": "http://www.mccollum.house.gov/index.asp?Type=NONE&SEC={AC61FD79-AD5F-440D-A7F0-555B12349E5B}", "youtube_url": "http://www.youtube.com/BMcCollum04", "nickname": "", "gender": "F", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Betty_McCollum", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BettyMcCollum04", "birthdate": "1954-07-12", "bioguide_id": "M001143", "fec_id": "H0MN04049", "state": "MN", "crp_id": "N00012942", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "3812"}}, {"legislator": {"website": "http://www.mcconnell.senate.gov/", "fax": "202-224-2499", "govtrack_id": "300072", "firstname": "Mitch", "chamber": "senate", "middlename": "", "lastname": "McConnell", "congress_office": "317 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2541", "webform": "http://www.mcconnell.senate.gov/public/index.cfm?p=contact", "youtube_url": "http://www.youtube.com/RepublicanLeader", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mitch_McConnell", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "McConnellPress", "birthdate": "1942-02-20", "bioguide_id": "M000355", "fec_id": "S2KY00012", "state": "KY", "crp_id": "N00003389", "official_rss": "", "facebook_id": "mitchmcconnell", "party": "R", "email": "", "votesmart_id": "53298"}}, {"legislator": {"website": "http://mccotter.house.gov/", "fax": "202-225-2667", "govtrack_id": "400260", "firstname": "Thaddeus", "chamber": "house", "middlename": "G.", "lastname": "McCotter", "congress_office": "2243 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8171", "webform": "http://mccotter.house.gov/HoR/MI11/Contact/Office+Contact+Information/Zipcode+Authentication+Page.htm", "youtube_url": "http://www.youtube.com/RepMcCotter", "nickname": "Thad", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Thaddeus_McCotter", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "ThadMcCotter", "birthdate": "1965-08-22", "bioguide_id": "M001147", "fec_id": "H2MI00037", "state": "MI", "crp_id": "N00013808", "official_rss": "", "facebook_id": "thaddeusmccotter", "party": "R", "email": "", "votesmart_id": "19847"}}, {"legislator": {"website": "http://mcdermott.house.gov/", "fax": "202-225-6197", "govtrack_id": "400262", "firstname": "James", "chamber": "house", "middlename": "A.", "lastname": "McDermott", "congress_office": "1035 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3106", "webform": "http://www.house.gov/mcdermott/contact.shtml", "youtube_url": "http://www.youtube.com/RepJimMcDermott", "nickname": "Jim", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_McDermott", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJimMcDermott", "birthdate": "1936-12-28", "bioguide_id": "M000404", "fec_id": "H8WA07132", "state": "WA", "crp_id": "N00009829", "official_rss": "", "facebook_id": "CongressmanJimMcDermott", "party": "D", "email": "", "votesmart_id": "27128"}}, {"legislator": {"website": "http://mcgovern.house.gov/", "fax": "202-225-5759", "govtrack_id": "400263", "firstname": "James", "chamber": "house", "middlename": "P.", "lastname": "McGovern", "congress_office": "438 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6101", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepJimMcGovern", "nickname": "Jim", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_McGovern", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMcGovern", "birthdate": "1959-11-20", "bioguide_id": "M000312", "fec_id": "H4MA03022", "state": "MA", "crp_id": "N00000179", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "552"}}, {"legislator": {"website": "http://mchenry.house.gov/", "fax": "202-225-0316", "govtrack_id": "400644", "firstname": "Patrick", "chamber": "house", "middlename": "T.", "lastname": "McHenry", "congress_office": "224 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2576", "webform": "http://mchenry.house.gov/zipauth.htm", "youtube_url": "http://www.youtube.com/CongressmanMcHenry", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Patrick_McHenry", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "PatrickMcHenry", "birthdate": "1975-10-22", "bioguide_id": "M001156", "fec_id": "H4NC10047", "state": "NC", "crp_id": "N00026627", "official_rss": "", "facebook_id": "CongressmanMcHenry", "party": "R", "email": "", "votesmart_id": "21031"}}, {"legislator": {"website": "http://mcintyre.house.gov/", "fax": "202-225-5773", "govtrack_id": "400266", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "McIntyre", "congress_office": "2133 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2731", "webform": "http://www.house.gov/mcintyre/IMA/issue.htm", "youtube_url": "http://www.youtube.com/RepMikeMcIntyre", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_McIntyre", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repmikemcintyre", "birthdate": "1956-08-06", "bioguide_id": "M000485", "fec_id": "H8NC07044", "state": "NC", "crp_id": "N00002356", "official_rss": "", "facebook_id": "mikemcintyre", "party": "D", "email": "", "votesmart_id": "153"}}, {"legislator": {"website": "http://mckeon.house.gov/", "fax": "202-226-0683", "govtrack_id": "400267", "firstname": "Howard", "chamber": "house", "middlename": "P.", "lastname": "McKeon", "congress_office": "2184 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1956", "webform": "http://mckeon.house.gov/contact.shtml", "youtube_url": "http://www.youtube.com/BuckMcKeon", "nickname": "Buck", "gender": "M", "district": "25", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Howard_McKeon", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BuckMcKeon", "birthdate": "1938-09-09", "bioguide_id": "M000508", "fec_id": "H2CA25036", "state": "CA", "crp_id": "N00006882", "official_rss": "", "facebook_id": "BuckMcKeon", "party": "R", "email": "", "votesmart_id": "26755"}}, {"legislator": {"website": "http://mckinley.house.gov/", "fax": "202-225-7564", "govtrack_id": "412487", "firstname": "David", "chamber": "house", "middlename": "", "lastname": "McKinley", "congress_office": "313 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4172", "webform": "", "youtube_url": "http://www.youtube.com/user/RepMcKinley", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_McKinley", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMcKinley", "birthdate": "1947-03-28", "bioguide_id": "M001180", "fec_id": "H0WV01072", "state": "WV", "crp_id": "N00031681", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "117396"}}, {"legislator": {"website": "http://mcmorris.house.gov/", "fax": "202-225-3392", "govtrack_id": "400659", "firstname": "Cathy", "chamber": "house", "middlename": "", "lastname": "McMorris-Rodgers", "congress_office": "2421 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2006", "webform": "http://www.mcmorris.house.gov/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/McMorrisRodgers", "nickname": "", "gender": "F", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Cathy_McMorris-Rodgers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "cathymcmorris", "birthdate": "1969-05-22", "bioguide_id": "M001159", "fec_id": "H4WA05077", "state": "WA", "crp_id": "N00026314", "official_rss": "", "facebook_id": "mcmorrisrodgers", "party": "R", "email": "", "votesmart_id": "3217"}}, {"legislator": {"website": "http://mcnerney.house.gov/", "fax": "202-225-4060", "govtrack_id": "412189", "firstname": "Gerald", "chamber": "house", "middlename": "", "lastname": "McNerney", "congress_office": "1210 Longworth House Office Building", "eventful_id": "", "phone": "202-225-1947", "webform": "http://mcnerney.house.gov/contact.shtml", "youtube_url": "http://www.youtube.com/RepJerryMcNerney", "nickname": "Jerry", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gerald_McNerney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jerrymcnerney", "birthdate": "1951-06-18", "bioguide_id": "M001166", "fec_id": "H4CA11081", "state": "CA", "crp_id": "N00026926", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "29474"}}, {"legislator": {"website": "http://meehan.house.gov/", "fax": "202- 226-0280", "govtrack_id": "412466", "firstname": "Patrick", "chamber": "house", "middlename": "", "lastname": "Meehan", "congress_office": "513 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2011", "webform": "", "youtube_url": "http://www.youtube.com/repmeehan", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Patrick_Meehan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "patmeehanpa", "birthdate": "1955-10-20", "bioguide_id": "M001181", "fec_id": "H0PA07082", "state": "PA", "crp_id": "N00031134", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "119474"}}, {"legislator": {"website": "http://house.gov/meeks/", "fax": "202-226-4169", "govtrack_id": "400271", "firstname": "Gregory", "chamber": "house", "middlename": "W.", "lastname": "Meeks", "congress_office": "2234 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3461", "webform": "http://www.house.gov/meeks/contactform_zipcheck.shtml", "youtube_url": "", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gregory_Meeks", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "GregoryMeeks", "birthdate": "1953-09-25", "bioguide_id": "M001137", "fec_id": "H8NY06048", "state": "NY", "crp_id": "N00001171", "official_rss": "", "facebook_id": "gregory.meeks", "party": "D", "email": "", "votesmart_id": "4360"}}, {"legislator": {"website": "http://menendez.senate.gov/", "fax": "202-228-2197", "govtrack_id": "400272", "firstname": "Robert", "chamber": "senate", "middlename": "", "lastname": "Menendez", "congress_office": "528 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4744", "webform": "http://menendez.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorMenendezNJ", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Menendez", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenatorMenendez", "birthdate": "1954-01-01", "bioguide_id": "M000639", "fec_id": "H2NJ13075", "state": "NJ", "crp_id": "N00000699", "official_rss": "", "facebook_id": "senatormenendez", "party": "D", "email": "", "votesmart_id": "26961"}}, {"legislator": {"website": "http://www.merkley.senate.gov", "fax": "202-228-3997", "govtrack_id": "412325", "firstname": "Jeffery", "chamber": "senate", "middlename": "A.", "lastname": "Merkley", "congress_office": "313 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3753", "webform": "http://www.merkley.senate.gov/contact/", "youtube_url": "http://www.youtube.com/senatorjeffmerkley", "nickname": "Jeff", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jeffery_Merkley", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenJeffMerkley", "birthdate": "1956-10-24", "bioguide_id": "M001176", "fec_id": "S8OR00207", "state": "OR", "crp_id": "N00029303", "official_rss": "", "facebook_id": "jeffmerkley", "party": "D", "email": "", "votesmart_id": "23644"}}, {"legislator": {"website": "http://mica.house.gov/", "fax": "202-226-0821", "govtrack_id": "400273", "firstname": "John", "chamber": "house", "middlename": "L.", "lastname": "Mica", "congress_office": "2187 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4035", "webform": "http://www.house.gov/mica/messageform.shtml", "youtube_url": "http://www.youtube.com/repjohnmica", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Mica", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1943-01-27", "bioguide_id": "M000689", "fec_id": "H2FL08055", "state": "FL", "crp_id": "N00002793", "official_rss": "", "facebook_id": "JohnMica", "party": "R", "email": "", "votesmart_id": "26805"}}, {"legislator": {"website": "http://michaud.house.gov/", "fax": "202-225-2943", "govtrack_id": "400274", "firstname": "Michael", "chamber": "house", "middlename": "H.", "lastname": "Michaud", "congress_office": "1724 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6306", "webform": "https://forms.house.gov/michaud/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/repmikemichaud", "nickname": "Mike", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Michaud", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeMichaud", "birthdate": "1955-01-18", "bioguide_id": "M001149", "fec_id": "H2ME02097", "state": "ME", "crp_id": "N00024770", "official_rss": "", "facebook_id": "131279995382", "party": "D", "email": "", "votesmart_id": "6582"}}, {"legislator": {"website": "http://www.mikulski.senate.gov/", "fax": "202-224-8858", "govtrack_id": "300073", "firstname": "Barbara", "chamber": "senate", "middlename": "A.", "lastname": "Mikulski", "congress_office": "503 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4654", "webform": "http://www.mikulski.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorMikulski", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Barbara_Mikulski", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "senatorbarb", "birthdate": "1936-07-20", "bioguide_id": "M000702", "fec_id": "S6MD00140", "state": "MD", "crp_id": "N00001945", "official_rss": "", "facebook_id": "senatorbarb", "party": "D", "email": "", "votesmart_id": "53304"}}, {"legislator": {"website": "http://candicemiller.house.gov/", "fax": "202-226-1169", "govtrack_id": "400276", "firstname": "Candice", "chamber": "house", "middlename": "S.", "lastname": "Miller", "congress_office": "1034 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2106", "webform": "http://candicemiller.house.gov/Contact.aspx", "youtube_url": "http://www.youtube.com/candicemi10", "nickname": "", "gender": "F", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Candice_Miller", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CandiceMiller", "birthdate": "1954-05-07", "bioguide_id": "M001150", "fec_id": "H6MI12181", "state": "MI", "crp_id": "N00009795", "official_rss": "", "facebook_id": "CongresswomanCandiceMiller", "party": "R", "email": "", "votesmart_id": "2062"}}, {"legislator": {"website": "http://garymiller.house.gov/", "fax": "202-226-6962", "govtrack_id": "400277", "firstname": "Gary", "chamber": "house", "middlename": "G.", "lastname": "Miller", "congress_office": "2349 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3201", "webform": "http://garymiller.house.gov/Contact/", "youtube_url": "http://www.youtube.com/GaryGMiller", "nickname": "", "gender": "M", "district": "42", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gary_Miller", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repgarymiller", "birthdate": "1948-10-16", "bioguide_id": "M001139", "fec_id": "H8CA41063", "state": "CA", "crp_id": "N00006954", "official_rss": "", "facebook_id": "RepGaryMiller", "party": "R", "email": "", "votesmart_id": "8346"}}, {"legislator": {"website": "http://georgemiller.house.gov/", "fax": "202-225-5609", "govtrack_id": "400278", "firstname": "George", "chamber": "house", "middlename": "", "lastname": "Miller", "congress_office": "2205 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2095", "webform": "http://georgemiller.house.gov/contactus/2007/08/post_1.html", "youtube_url": "http://www.youtube.com/RepGeorgeMiller", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/George_Miller", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "askgeorge", "birthdate": "1945-05-17", "bioguide_id": "M000725", "fec_id": "H6CA07043", "state": "CA", "crp_id": "N00007390", "official_rss": "", "facebook_id": "repgeorgemiller", "party": "D", "email": "", "votesmart_id": "26734"}}, {"legislator": {"website": "http://jeffmiller.house.gov/", "fax": "202-225-3414", "govtrack_id": "400279", "firstname": "Jeff", "chamber": "house", "middlename": "", "lastname": "Miller", "congress_office": "2416 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4136", "webform": "http://jeffmiller.house.gov/index.cfm?FuseAction=Contact.Home", "youtube_url": "http://www.youtube.com/RepJeffMiller", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jeff_Miller", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CongJeffMiller", "birthdate": "1959-06-27", "bioguide_id": "M001144", "fec_id": "H2FL01100", "state": "FL", "crp_id": "N00013846", "official_rss": "", "facebook_id": "66367876671", "party": "R", "email": "", "votesmart_id": "17276"}}, {"legislator": {"website": "http://bradmiller.house.gov/", "fax": "202-225-0181", "govtrack_id": "400280", "firstname": "Ralph", "chamber": "house", "middlename": "Bradley", "lastname": "Miller", "congress_office": "1127 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3032", "webform": "http://bradmiller.house.gov/?sectionid=17&sectiontree=9,17", "youtube_url": "http://www.youtube.com/MillerNC13", "nickname": "Brad", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ralph_Miller", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBradMiller", "birthdate": "1953-05-19", "bioguide_id": "M001154", "fec_id": "H2NC13029", "state": "NC", "crp_id": "N00025093", "official_rss": "", "facebook_id": "repbradmiller", "party": "D", "email": "", "votesmart_id": "10205"}}, {"legislator": {"website": "http://gwenmoore.house.gov/", "fax": "202-225-8135", "govtrack_id": "400661", "firstname": "Gwendolynne", "chamber": "house", "middlename": "S.", "lastname": "Moore", "congress_office": "2245 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4572", "webform": "http://www.house.gov/gwenmoore/contact.shtml", "youtube_url": "http://www.youtube.com/RepGwenMoore", "nickname": "Gwen", "gender": "F", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gwendolynne_Moore", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGwenMoore", "birthdate": "1951-04-18", "bioguide_id": "M001160", "fec_id": "H4WI04183", "state": "WI", "crp_id": "N00026914", "official_rss": "", "facebook_id": "58864029545", "party": "D", "email": "", "votesmart_id": "3457"}}, {"legislator": {"website": "http://www.moran.house.gov", "fax": "202-225-0017", "govtrack_id": "400283", "firstname": "James", "chamber": "house", "middlename": "P.", "lastname": "Moran", "congress_office": "2239 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4376", "webform": "http://moran.house.gov/zipauth.shtml", "youtube_url": "http://www.youtube.com/RepJamesPMoran", "nickname": "Jim", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Moran", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "Jim_Moran", "birthdate": "1945-05-16", "bioguide_id": "M000933", "fec_id": "H0VA08040", "state": "VA", "crp_id": "N00002083", "official_rss": "", "facebook_id": "RepJimMoran", "party": "D", "email": "", "votesmart_id": "27118"}}, {"legislator": {"website": "http://www.moran.senate.gov", "fax": "", "govtrack_id": "400284", "firstname": "Jerry", "chamber": "senate", "middlename": "", "lastname": "Moran", "congress_office": "354 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-6521", "webform": "http://www.moran.senate.gov/public/index.cfm?p=e-mail-jerry", "youtube_url": "http://www.youtube.com/CongressJerryMoran", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jerry_Moran", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "JerryMoran", "birthdate": "1954-05-29", "bioguide_id": "M000934", "fec_id": "H6KS01096", "state": "KS", "crp_id": "N00005282", "official_rss": "", "facebook_id": "jerrymoran", "party": "R", "email": "", "votesmart_id": "542"}}, {"legislator": {"website": "http://mulvaney.house.gov/", "fax": "202-225-0464", "govtrack_id": "412474", "firstname": "John ", "chamber": "house", "middlename": "Michael", "lastname": "Mulvaney", "congress_office": "1004 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5501", "webform": "", "youtube_url": "", "nickname": "Mick", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mick_Mulvaney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "mickmulvaney", "birthdate": "1967-07-21", "bioguide_id": "M001182", "fec_id": "H0SC05031", "state": "SC", "crp_id": "N00031412", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "60348"}}, {"legislator": {"website": "http://www.murkowski.senate.gov/", "fax": "202-224-5301", "govtrack_id": "300075", "firstname": "Lisa", "chamber": "senate", "middlename": "A.", "lastname": "Murkowski", "congress_office": "709 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6665", "webform": "http://www.murkowski.senate.gov/public/index.cfm?p=Contact", "youtube_url": "http://www.youtube.com/SenatorMurkowski", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Lisa_Murkowski", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "lisamurkowski", "birthdate": "1957-05-22", "bioguide_id": "M001153", "fec_id": "S4AK00099", "state": "AK", "crp_id": "N00026050", "official_rss": "", "facebook_id": "SenLisaMurkowski", "party": "R", "email": "", "votesmart_id": "15841"}}, {"legislator": {"website": "http://chrismurphy.house.gov/", "fax": "202-225-5933", "govtrack_id": "412194", "firstname": "Christopher", "chamber": "house", "middlename": "S.", "lastname": "Murphy", "congress_office": "412 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4476", "webform": "http://www.house.gov/formchrismurphy/ic_zip_auth.htm", "youtube_url": "http://www.youtube.com/RepChrisMurphy", "nickname": "Chris", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Christopher_Murphy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1973-08-03", "bioguide_id": "M001169", "fec_id": "H6CT05124", "state": "CT", "crp_id": "N00027566", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "17189"}}, {"legislator": {"website": "http://murphy.house.gov/", "fax": "202-225-1844", "govtrack_id": "400285", "firstname": "Tim", "chamber": "house", "middlename": "", "lastname": "Murphy", "congress_office": "322 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2301", "webform": "http://murphy.house.gov/Contact/zipauth.htm", "youtube_url": "http://www.youtube.com/TimMurphyPA18", "nickname": "", "gender": "M", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Murphy", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTimMurphy", "birthdate": "1952-09-11", "bioguide_id": "M001151", "fec_id": "H2PA18143", "state": "PA", "crp_id": "N00024992", "official_rss": "", "facebook_id": "105769762798552", "party": "R", "email": "", "votesmart_id": "9794"}}, {"legislator": {"website": "http://www.murray.senate.gov/", "fax": "202-224-0238", "govtrack_id": "300076", "firstname": "Patty", "chamber": "senate", "middlename": "", "lastname": "Murray", "congress_office": "448 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2621", "webform": "http://www.murray.senate.gov/email/index.cfm", "youtube_url": "http://www.youtube.com/SenatorPattyMurray", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Patty_Murray", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "pattymurray", "birthdate": "1950-10-11", "bioguide_id": "M001111", "fec_id": "S2WA00189", "state": "WA", "crp_id": "N00007876", "official_rss": "", "facebook_id": "pattymurray", "party": "D", "email": "", "votesmart_id": "53358"}}, {"legislator": {"website": "http://myrick.house.gov/", "fax": "202-225-3389", "govtrack_id": "400288", "firstname": "Sue", "chamber": "house", "middlename": "W.", "lastname": "Myrick", "congress_office": "230 Cannon House Office Building", "eventful_id": "", "phone": "202-225-1976", "webform": "http://myrick.house.gov/zipauth.shtml", "youtube_url": "http://www.youtube.com/SueMyrickNC09", "nickname": "", "gender": "F", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Sue_Myrick", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "SueMyrick", "birthdate": "1941-08-01", "bioguide_id": "M001134", "fec_id": "H4NC09106", "state": "NC", "crp_id": "N00002327", "official_rss": "", "facebook_id": "SueMyrickNC", "party": "R", "email": "", "votesmart_id": "21789"}}, {"legislator": {"website": "http://nadler.house.gov/", "fax": "202-225-6923", "govtrack_id": "400289", "firstname": "Jerrold", "chamber": "house", "middlename": "L.", "lastname": "Nadler", "congress_office": "2334 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5635", "webform": "http://www.house.gov/nadler/emailform.shtml", "youtube_url": "http://www.youtube.com/CongressmanNadler", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jerrold_Nadler", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1947-06-13", "bioguide_id": "N000002", "fec_id": "H2NY17071", "state": "NY", "crp_id": "N00000939", "official_rss": "", "facebook_id": "CongressmanNadler", "party": "D", "email": "", "votesmart_id": "26980"}}, {"legislator": {"website": "http://napolitano.house.gov/", "fax": "202-225-0027", "govtrack_id": "400290", "firstname": "Grace", "chamber": "house", "middlename": "Flores", "lastname": "Napolitano", "congress_office": "1610 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5256", "webform": "http://www.napolitano.house.gov/contact/feedback.htm", "youtube_url": "http://www.youtube.com/RepGraceNapolitano", "nickname": "", "gender": "F", "district": "38", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Grace_Napolitano", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "gracenapolitano", "birthdate": "1936-12-04", "bioguide_id": "N000179", "fec_id": "H8CA34068", "state": "CA", "crp_id": "N00006789", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "8393"}}, {"legislator": {"website": "http://house.gov/neal/", "fax": "202-225-8112", "govtrack_id": "400291", "firstname": "Richard", "chamber": "house", "middlename": "E.", "lastname": "Neal", "congress_office": "2208 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5601", "webform": "http://www.house.gov/neal/write_neal.html", "youtube_url": "http://www.youtube.com/RepRichardENeal", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Neal", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRichardNeal", "birthdate": "1949-02-14", "bioguide_id": "N000015", "fec_id": "H8MA02041", "state": "MA", "crp_id": "N00000153", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26895"}}, {"legislator": {"website": "http://www.billnelson.senate.gov/", "fax": "202-228-2183", "govtrack_id": "300078", "firstname": "Bill", "chamber": "senate", "middlename": "", "lastname": "Nelson", "congress_office": "716 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5274", "webform": "http://www.billnelson.senate.gov/contact/index.cfm", "youtube_url": "http://www.youtube.com/SenBillNelson", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Nelson", "in_office": true, "senate_class": "I", "name_suffix": "Sr.", "twitter_id": "SenBillNelson", "birthdate": "1942-09-29", "bioguide_id": "N000032", "fec_id": "S8FL00166", "state": "FL", "crp_id": "N00009926", "official_rss": "", "facebook_id": "billnelson", "party": "D", "email": "", "votesmart_id": "30880"}}, {"legislator": {"website": "http://www.bennelson.senate.gov/", "fax": "202-228-0012", "govtrack_id": "300077", "firstname": "E. Benjamin", "chamber": "senate", "middlename": "", "lastname": "Nelson", "congress_office": "720 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6551", "webform": "http://www.bennelson.senate.gov/contact-me.cfm", "youtube_url": "http://www.youtube.com/SenBenNelson", "nickname": "Ben", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/E._Benjamin_Nelson", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenBenNelson", "birthdate": "1941-05-17", "bioguide_id": "N000180", "fec_id": "S6NE00095", "state": "NE", "crp_id": "N00005329", "official_rss": "", "facebook_id": "senatorbennelson", "party": "D", "email": "", "votesmart_id": "21744"}}, {"legislator": {"website": "http://randy.house.gov/", "fax": "202-225-9615", "govtrack_id": "400441", "firstname": "Randy", "chamber": "house", "middlename": "", "lastname": "Neugebauer", "congress_office": "1424 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4005", "webform": "http://www.randy.house.gov/?sectionid=65&sectiontree=8,65", "youtube_url": "http://www.youtube.com/RandyNeugebauer", "nickname": "", "gender": "M", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Randy_Neugebauer", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RandyNeugebauer", "birthdate": "1949-12-24", "bioguide_id": "N000182", "fec_id": "H4TX19102", "state": "TX", "crp_id": "N00026043", "official_rss": "", "facebook_id": "rep.randy.neugebauer", "party": "R", "email": "", "votesmart_id": "49522"}}, {"legislator": {"website": "http://noem.house.gov/", "fax": "202-225-5823", "govtrack_id": "412475", "firstname": "Kristi", "chamber": "house", "middlename": "", "lastname": "Noem", "congress_office": "226 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2801", "webform": "", "youtube_url": "", "nickname": "", "gender": "F", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kristi_Noem", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repkristinoem", "birthdate": "1971-11-30", "bioguide_id": "N000184", "fec_id": "H0SD00054", "state": "SD", "crp_id": "N00032022", "official_rss": "", "facebook_id": "118670721538023", "party": "R", "email": "", "votesmart_id": "58189"}}, {"legislator": {"website": "http://www.norton.house.gov/", "fax": "202-225-3002", "govtrack_id": "400295", "firstname": "Eleanor", "chamber": "house", "middlename": "Holmes", "lastname": "Norton", "congress_office": "2136 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8050", "webform": "http://www.norton.house.gov/forms/contact.html", "youtube_url": "http://www.youtube.com/EleanorHNorton", "nickname": "", "gender": "F", "district": "0", "title": "Del", "congresspedia_url": "http://www.opencongress.org/wiki/Eleanor_Norton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "EleanorNorton", "birthdate": "1937-06-13", "bioguide_id": "N000147", "fec_id": "H0DC00058", "state": "DC", "crp_id": "N00001692", "official_rss": "", "facebook_id": "CongresswomanNorton", "party": "D", "email": "", "votesmart_id": "775"}}, {"legislator": {"website": "http://nugent.house.gov/", "fax": "202- 226-6559", "govtrack_id": "412409", "firstname": "Richard", "chamber": "house", "middlename": "", "lastname": "Nugent", "congress_office": "1517 Longworth House Office Building", "eventful_id": "", "phone": "202-225-1002", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Nugent", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRichNugent", "birthdate": "1951-05-26", "bioguide_id": "N000185", "fec_id": "H0FL05139", "state": "FL", "crp_id": "N00032441", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "124333"}}, {"legislator": {"website": "http://nunes.house.gov/", "fax": "202-225-3404", "govtrack_id": "400297", "firstname": "Devin", "chamber": "house", "middlename": "G.", "lastname": "Nunes", "congress_office": "1013 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2523", "webform": "http://www.nunes.house.gov/index.cfm?FuseAction=ContactUs.ContactForm", "youtube_url": "http://www.youtube.com/RepDevinNunes", "nickname": "", "gender": "M", "district": "21", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Devin_Nunes", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "devinnunes", "birthdate": "1973-10-01", "bioguide_id": "N000181", "fec_id": "H8CA20059", "state": "CA", "crp_id": "N00007248", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "16725"}}, {"legislator": {"website": "http://nunnelee.house.gov/", "fax": "202- 225-3549", "govtrack_id": "412442", "firstname": "Patrick", "chamber": "house", "middlename": "Alan", "lastname": "Nunnelee", "congress_office": "1432 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4306", "webform": "", "youtube_url": "http://www.youtube.com/congressmannunnelee", "nickname": "Alan", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Alan_Nunnelee", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "AlanNunnelee", "birthdate": "1958-10-09", "bioguide_id": "N000186", "fec_id": "H0MS01043", "state": "MS", "crp_id": "N00031006", "official_rss": "", "facebook_id": "alannunnelee", "party": "R", "email": "", "votesmart_id": "8326"}}, {"legislator": {"website": "http://olson.house.gov/", "fax": "202-225-5241", "govtrack_id": "412302", "firstname": "Pete", "chamber": "house", "middlename": "", "lastname": "Olson", "congress_office": "312 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5951", "webform": "https://forms.house.gov/olson/contact-form.shtml", "youtube_url": "http://www.youtube.com/PeteOlsonTX22", "nickname": "", "gender": "M", "district": "22", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Pete_Olson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "OlsonPressShop", "birthdate": "1962-12-09", "bioguide_id": "O000168", "fec_id": "H8TX22107", "state": "TX", "crp_id": "N00029285", "official_rss": "", "facebook_id": "20718168936", "party": "R", "email": "", "votesmart_id": "102008"}}, {"legislator": {"website": "http://olver.house.gov/", "fax": "202-226-1224", "govtrack_id": "400301", "firstname": "John", "chamber": "house", "middlename": "W.", "lastname": "Olver", "congress_office": "1111 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5335", "webform": "http://www.house.gov/olver/contactme.html", "youtube_url": "http://www.youtube.com/CongressmanOlver", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Olver", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJohnOlver", "birthdate": "1936-09-03", "bioguide_id": "O000085", "fec_id": "H2MA01020", "state": "MA", "crp_id": "N00000143", "official_rss": "", "facebook_id": "CongressmanJohnOlver", "party": "D", "email": "", "votesmart_id": "26894"}}, {"legislator": {"website": "http://owens.house.gov/", "fax": "202-226-0621", "govtrack_id": "412383", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Owens", "congress_office": "431 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4611", "webform": "http://owens.house.gov/contact/email-me.shtml", "youtube_url": "http://www.youtube.com/user/RepBillOwens", "nickname": "", "gender": "M", "district": "23", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/William_Owens", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BillOwensNY", "birthdate": "1949-01-20", "bioguide_id": "O000169", "fec_id": "H0NY23081", "state": "NY", "crp_id": "N00031011", "official_rss": "", "facebook_id": "repbillowens", "party": "D", "email": "", "votesmart_id": "116354"}}, {"legislator": {"website": "http://palazzo.house.gov/", "fax": "202- 225-7074", "govtrack_id": "412443", "firstname": "Steven", "chamber": "house", "middlename": "", "lastname": "Palazzo", "congress_office": "331 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5772", "webform": "", "youtube_url": "http://www.youtube.com/CongressmanPalazzo", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_Palazzo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "StevenPalazzo", "birthdate": "1970-02-21", "bioguide_id": "P000601", "fec_id": "H0MS04120", "state": "MS", "crp_id": "N00031958", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "69521"}}, {"legislator": {"website": "http://house.gov/pallone/", "fax": "202-225-9665", "govtrack_id": "400308", "firstname": "Frank", "chamber": "house", "middlename": "J.", "lastname": "Pallone", "congress_office": "237 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4671", "webform": "http://www.house.gov/pallone/contact.shtml", "youtube_url": "", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_Pallone", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "FrankPallone", "birthdate": "1951-10-30", "bioguide_id": "P000034", "fec_id": "H8NJ03073", "state": "NJ", "crp_id": "N00000781", "official_rss": "", "facebook_id": "6517277731", "party": "D", "email": "", "votesmart_id": "26951"}}, {"legislator": {"website": "http://pascrell.house.gov/", "fax": "202-225-5782", "govtrack_id": "400309", "firstname": "William", "chamber": "house", "middlename": "J.", "lastname": "Pascrell", "congress_office": "2370 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5751", "webform": "http://pascrell.house.gov/contact/", "youtube_url": "http://www.youtube.com/RepPascrell", "nickname": "Bill", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/William_Pascrell", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "BillPascrell", "birthdate": "1937-01-25", "bioguide_id": "P000096", "fec_id": "H6NJ08118", "state": "NJ", "crp_id": "N00000751", "official_rss": "", "facebook_id": "pascrell", "party": "D", "email": "", "votesmart_id": "478"}}, {"legislator": {"website": "http://www.pastor.house.gov/", "fax": "202-225-1655", "govtrack_id": "400310", "firstname": "Ed", "chamber": "house", "middlename": "", "lastname": "Pastor", "congress_office": "2465 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4065", "webform": "http://www.house.gov/writerep", "youtube_url": "", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ed_Pastor", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1943-06-28", "bioguide_id": "P000099", "fec_id": "H2AZ02055", "state": "AZ", "crp_id": "N00006397", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26719"}}, {"legislator": {"website": "http://www.paul.senate.gov", "fax": "", "govtrack_id": "412492", "firstname": "Rand", "chamber": "senate", "middlename": "", "lastname": "Paul", "congress_office": "208 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4343", "webform": "http://www.paul.senate.gov/?p=contact", "youtube_url": "", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Rob_Portman", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenRandPaul", "birthdate": "1963-01-07", "bioguide_id": "P000603", "fec_id": "S0KY00156", "state": "KY", "crp_id": "N00030836", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "117285"}}, {"legislator": {"website": "http://house.gov/paul/", "fax": "202-226-6553", "govtrack_id": "400311", "firstname": "Ronald", "chamber": "house", "middlename": "Ernest", "lastname": "Paul", "congress_office": "203 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2831", "webform": "http://www.house.gov/paul/contact.shtml", "youtube_url": "http://www.youtube.com/CongressmanRonPaul", "nickname": "Ron", "gender": "M", "district": "14", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ronald_Paul", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRonPaul", "birthdate": "1935-08-20", "bioguide_id": "P000583", "fec_id": "H6TX22101", "state": "TX", "crp_id": "N00005906", "official_rss": "", "facebook_id": "ronpaul", "party": "R", "email": "", "votesmart_id": "296"}}, {"legislator": {"website": "http://paulsen.house.gov/", "fax": "202-225-6351", "govtrack_id": "412303", "firstname": "Erik", "chamber": "house", "middlename": "", "lastname": "Paulsen", "congress_office": "127 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2871", "webform": "https://forms.house.gov/paulsen/contact-form.shtml", "youtube_url": "http://www.youtube.com/reperikpaulsen", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Erik_Paulsen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepErikPaulsen", "birthdate": "1965-05-14", "bioguide_id": "P000594", "fec_id": "H8MN03077", "state": "MN", "crp_id": "N00029391", "official_rss": "", "facebook_id": "128558293848160", "party": "R", "email": "", "votesmart_id": "3833"}}, {"legislator": {"website": "http://house.gov/payne/", "fax": "202-225-4160", "govtrack_id": "400312", "firstname": "Donald", "chamber": "house", "middlename": "M.", "lastname": "Payne", "congress_office": "2310 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3436", "webform": "http://www.house.gov/payne/IMA/email.shtml", "youtube_url": "http://www.youtube.com/CongressmanPayne", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Donald_Payne", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1934-07-16", "bioguide_id": "P000149", "fec_id": "H0NJ10026", "state": "NJ", "crp_id": "N00000716", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26957"}}, {"legislator": {"website": "http://pearce.house.gov", "fax": "", "govtrack_id": "400313", "firstname": "Stevan", "chamber": "house", "middlename": "E.", "lastname": "Pearce", "congress_office": "2432 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2365", "webform": "", "youtube_url": "http://www.youtube.com/user/NMStevePearce", "nickname": "Steve", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Stevan_Pearce", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepStevePearce", "birthdate": "1947-08-24", "bioguide_id": "P000588", "fec_id": "H2NM02126", "state": "NM", "crp_id": "N00012672", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "10655"}}, {"legislator": {"website": "http://house.gov/pelosi/", "fax": "202-225-8259", "govtrack_id": "400314", "firstname": "Nancy", "chamber": "house", "middlename": "", "lastname": "Pelosi", "congress_office": "235 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4965", "webform": "http://www.house.gov/pelosi/contact/contact.html", "youtube_url": "http://www.youtube.com/nancypelosi", "nickname": "", "gender": "F", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nancy_Pelosi", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "NancyPelosi", "birthdate": "1940-03-26", "bioguide_id": "P000197", "fec_id": "H8CA05035", "state": "CA", "crp_id": "N00007360", "official_rss": "", "facebook_id": "NancyPelosi", "party": "D", "email": "", "votesmart_id": "26732"}}, {"legislator": {"website": "http://mikepence.house.gov/", "fax": "202-225-3382", "govtrack_id": "400315", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Pence", "congress_office": "100 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3021", "webform": "https://forms.house.gov/pence/IMA/contact_form.htm", "youtube_url": "http://www.youtube.com/CongressmanMikePence", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Pence", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikePence", "birthdate": "1959-06-07", "bioguide_id": "P000587", "fec_id": "H8IN02060", "state": "IN", "crp_id": "N00003765", "official_rss": "", "facebook_id": "mikepence", "party": "R", "email": "", "votesmart_id": "34024"}}, {"legislator": {"website": "http://perlmutter.house.gov/", "fax": "202-225-5278", "govtrack_id": "412192", "firstname": "Ed", "chamber": "house", "middlename": "", "lastname": "Perlmutter", "congress_office": "1221 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2645", "webform": "http://perlmutter.house.gov/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepPerlmutter", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ed_Perlmutter", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepPerlmutter", "birthdate": "1953-05-01", "bioguide_id": "P000593", "fec_id": "H6CO07023", "state": "CO", "crp_id": "N00027510", "official_rss": "", "facebook_id": "86174496459", "party": "D", "email": "", "votesmart_id": "2653"}}, {"legislator": {"website": "http://peters.house.gov/", "fax": "202-226-2356", "govtrack_id": "412305", "firstname": "Gary", "chamber": "house", "middlename": "C.", "lastname": "Peters", "congress_office": "1609 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5802", "webform": "https://forms.house.gov/peters/contact-form.shtml", "youtube_url": "http://www.youtube.com/repgarypeters", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Gary_Peters", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepGaryPeters", "birthdate": "1958-12-01", "bioguide_id": "P000595", "fec_id": "H8MI09068", "state": "MI", "crp_id": "N00029277", "official_rss": "", "facebook_id": "88851604323", "party": "D", "email": "", "votesmart_id": "8749"}}, {"legislator": {"website": "http://collinpeterson.house.gov/", "fax": "202-225-1593", "govtrack_id": "400316", "firstname": "Collin", "chamber": "house", "middlename": "C.", "lastname": "Peterson", "congress_office": "2211 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2165", "webform": "http://collinpeterson.house.gov//email.html", "youtube_url": "", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Collin_Peterson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1944-06-29", "bioguide_id": "P000258", "fec_id": "H2MN07014", "state": "MN", "crp_id": "N00004558", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26926"}}, {"legislator": {"website": "http://petri.house.gov/", "fax": "202-225-2356", "govtrack_id": "400318", "firstname": "Thomas", "chamber": "house", "middlename": "E.", "lastname": "Petri", "congress_office": "2462 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2476", "webform": "https://forms.house.gov/petri/zip_authen.shtml", "youtube_url": "http://www.youtube.com/TomPetri", "nickname": "Tom", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Thomas_Petri", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1940-05-28", "bioguide_id": "P000265", "fec_id": "H0WI06061", "state": "WI", "crp_id": "N00004426", "official_rss": "", "facebook_id": "thomaspetri", "party": "R", "email": "", "votesmart_id": "27139"}}, {"legislator": {"website": "http://pierluisi.house.gov/", "fax": "202-225-2154", "govtrack_id": "412306", "firstname": "Pedro", "chamber": "house", "middlename": "", "lastname": "Pierluisi", "congress_office": "1213 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2615", "webform": "https://forms.house.gov/pierluisi/contact-form.shtml", "youtube_url": "http://www.youtube.com/PierluisiCongress", "nickname": "", "gender": "M", "district": "0", "title": "Com", "congresspedia_url": "http://www.opencongress.org/wiki/Pedro_Pierluisi", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "pedropierluisi", "birthdate": "1959-04-26", "bioguide_id": "P000596", "fec_id": "H8PR00062", "state": "PR", "crp_id": "N00029168", "official_rss": "", "facebook_id": "55139978107", "party": "D", "email": "", "votesmart_id": "110894"}}, {"legislator": {"website": "http://pingree.house.gov/", "fax": "202-225-5590", "govtrack_id": "412307", "firstname": "Chellie", "chamber": "house", "middlename": "M.", "lastname": "Pingree", "congress_office": "1318 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6116", "webform": "https://forms.house.gov/pingree/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongresswomanPingree", "nickname": "", "gender": "F", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Chellie_Pingree", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "chelliepingree", "birthdate": "1955-04-02", "bioguide_id": "P000597", "fec_id": "H8ME01120", "state": "ME", "crp_id": "N00013817", "official_rss": "", "facebook_id": "ChelliePingree", "party": "D", "email": "", "votesmart_id": "6586"}}, {"legislator": {"website": "http://house.gov/pitts/", "fax": "202-225-2013", "govtrack_id": "400320", "firstname": "Joseph", "chamber": "house", "middlename": "R.", "lastname": "Pitts", "congress_office": "420 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2411", "webform": "http://www.house.gov/pitts/contact.shtml", "youtube_url": "http://www.youtube.com/CongressmanJoePitts", "nickname": "Joe", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joseph_Pitts", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJoePitts", "birthdate": "1939-10-10", "bioguide_id": "P000373", "fec_id": "H6PA16197", "state": "PA", "crp_id": "N00001633", "official_rss": "", "facebook_id": "94156528752", "party": "R", "email": "", "votesmart_id": "265"}}, {"legislator": {"website": "http://house.gov/platts/", "fax": "202-226-1000", "govtrack_id": "400321", "firstname": "Todd", "chamber": "house", "middlename": "Russell", "lastname": "Platts", "congress_office": "2455 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5836", "webform": "http://www.house.gov/platts/email.shtml", "youtube_url": "http://www.youtube.com/RepToddPlatts", "nickname": "", "gender": "M", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Todd_Platts", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1962-03-05", "bioguide_id": "P000585", "fec_id": "H0PA19053", "state": "PA", "crp_id": "N00009719", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "9211"}}, {"legislator": {"website": "http://poe.house.gov/", "fax": "202-225-5547", "govtrack_id": "400652", "firstname": "Ted", "chamber": "house", "middlename": "", "lastname": "Poe", "congress_office": "430 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6565", "webform": "http://poe.house.gov/email/", "youtube_url": "http://youtube.com/CongressmanTedPoe", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ted_Poe", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "JudgeTedPoe", "birthdate": "1948-10-13", "bioguide_id": "P000592", "fec_id": "H4TX02108", "state": "TX", "crp_id": "N00026457", "official_rss": "", "facebook_id": "106631626049851", "party": "R", "email": "", "votesmart_id": "49198"}}, {"legislator": {"website": "http://polis.house.gov/", "fax": "202-226-7840", "govtrack_id": "412308", "firstname": "Jared", "chamber": "house", "middlename": "", "lastname": "Polis", "congress_office": "501 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2161", "webform": "http://polis.house.gov/Contact/", "youtube_url": "http://www.youtube.com/JaredPolis31275", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jared_Polis", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "jaredpolis", "birthdate": "1975-05-12", "bioguide_id": "P000598", "fec_id": "H8CO02137", "state": "CO", "crp_id": "N00029127", "official_rss": "", "facebook_id": "jaredpolis", "party": "D", "email": "", "votesmart_id": "106220"}}, {"legislator": {"website": "http://pompeo.house.gov/", "fax": "202-225-3489", "govtrack_id": "412431", "firstname": "Michael", "chamber": "house", "middlename": "Richard", "lastname": "Pompeo", "congress_office": "107 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6216", "webform": "", "youtube_url": "", "nickname": "Mike", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Pompeo", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "mikepompeo", "birthdate": "1963-12-30", "bioguide_id": "P000602", "fec_id": "H0KS0405", "state": "KS", "crp_id": "N00030744", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "125023"}}, {"legislator": {"website": "http://www.portman.senate.gov", "fax": "", "govtrack_id": "400325", "firstname": "Rob", "chamber": "senate", "middlename": "", "lastname": "Portman", "congress_office": "338 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-3353", "webform": "http://www.portman.senate.gov/public/index.cfm/contact?p=contact-form", "youtube_url": "http://www.youtube.com/SenRobPortman", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Rand_Paul", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "robportman", "birthdate": "1955-12-19", "bioguide_id": "P000449", "fec_id": "S0OH00133", "state": "OH", "crp_id": "N00003682", "official_rss": "", "facebook_id": "robportman", "party": "R", "email": "", "votesmart_id": "27008"}}, {"legislator": {"website": "http://posey.house.gov/", "fax": "202-225-3516", "govtrack_id": "412309", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Posey", "congress_office": "120 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3671", "webform": "http://posey.house.gov/Contact/", "youtube_url": "http://www.youtube.com/CongressmanPosey", "nickname": "", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Posey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "congbillposey", "birthdate": "1947-12-18", "bioguide_id": "P000599", "fec_id": "H8FL15107", "state": "FL", "crp_id": "N00029662", "official_rss": "", "facebook_id": "100000080395369", "party": "R", "email": "", "votesmart_id": "24280"}}, {"legislator": {"website": "http://price.house.gov/", "fax": "202-225-2014", "govtrack_id": "400326", "firstname": "David", "chamber": "house", "middlename": "Eugene", "lastname": "Price", "congress_office": "2162 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1784", "webform": "http://price.house.gov/contact/contact_form.shtml", "youtube_url": "http://www.youtube.com/repdavidprice", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Price", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDavidEPrice", "birthdate": "1940-08-17", "bioguide_id": "P000523", "fec_id": "H6NC04037", "state": "NC", "crp_id": "N00002260", "official_rss": "", "facebook_id": "8338225975", "party": "D", "email": "", "votesmart_id": "119"}}, {"legislator": {"website": "http://tom.house.gov/", "fax": "202-225-4656", "govtrack_id": "400626", "firstname": "Thomas", "chamber": "house", "middlename": "E.", "lastname": "Price", "congress_office": "403 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4501", "webform": "http://tom.house.gov/html/contact_form_email.cfm", "youtube_url": "http://www.youtube.com/RepTomPrice", "nickname": "Tom", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Thomas_Price", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTomPrice", "birthdate": "1954-10-08", "bioguide_id": "P000591", "fec_id": "H4GA06087", "state": "GA", "crp_id": "N00026160", "official_rss": "", "facebook_id": "reptomprice", "party": "R", "email": "", "votesmart_id": "11853"}}, {"legislator": {"website": "http://www.pryor.senate.gov", "fax": "202-228-0908", "govtrack_id": "300080", "firstname": "Mark", "chamber": "senate", "middlename": "Lunsford", "lastname": "Pryor", "congress_office": "255 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-2353", "webform": "http://www.pryor.senate.gov/public/index.cfm?p=ContactMe", "youtube_url": "http://www.youtube.com/SenatorPryor", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Pryor", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "senmarkpryor", "birthdate": "1963-01-10", "bioguide_id": "P000590", "fec_id": "S0AR00028", "state": "AR", "crp_id": "N00013823", "official_rss": "", "facebook_id": "MarkPryor", "party": "D", "email": "", "votesmart_id": "35"}}, {"legislator": {"website": "http://quayle.house.gov/", "fax": "202-225-3462", "govtrack_id": "412398", "firstname": "Ben", "chamber": "house", "middlename": "", "lastname": "Quayle", "congress_office": "1419 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3361", "webform": "", "youtube_url": "http://www.youtube.com/repbenquayle", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ben_Quayle", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "benquayle", "birthdate": "1976-11-05", "bioguide_id": "Q000024", "fec_id": "H0AZ03362", "state": "AZ", "crp_id": "N00031723", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "123506"}}, {"legislator": {"website": "http://quigley.house.gov/", "fax": "202-225-5603", "govtrack_id": "412331", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Quigley", "congress_office": "1124 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4061", "webform": "https://forms.house.gov/quigley/contact-form.shtml", "youtube_url": "http://www.youtube.com/repmikequigley", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Quigley", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeQuigley", "birthdate": "1959-10-17", "bioguide_id": "Q000023", "fec_id": "H0IL05096", "state": "IL", "crp_id": "N00030581", "official_rss": "", "facebook_id": "repmikequigley", "party": "D", "email": "", "votesmart_id": "83310"}}, {"legislator": {"website": "http://rahall.house.gov/", "fax": "202-225-9061", "govtrack_id": "400331", "firstname": "Nick Joe", "chamber": "house", "middlename": "", "lastname": "Rahall", "congress_office": "2307 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3452", "webform": "http://www.rahall.house.gov/?sectionid=9&sectiontree=9", "youtube_url": "http://www.youtube.com/NRAHALLWV03", "nickname": "Nick", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nick_Joe_Rahall", "in_office": true, "senate_class": "", "name_suffix": "II", "twitter_id": "", "birthdate": "1949-05-20", "bioguide_id": "R000011", "fec_id": "H6WV04057", "state": "WV", "crp_id": "N00002198", "official_rss": "", "facebook_id": "NickRahall", "party": "D", "email": "", "votesmart_id": "27133"}}, {"legislator": {"website": "http://rangel.house.gov/", "fax": "202-225-0816", "govtrack_id": "400333", "firstname": "Charles", "chamber": "house", "middlename": "B.", "lastname": "Rangel", "congress_office": "2354 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4365", "webform": "https://forms.house.gov/rangel/forms/contact.shtml", "youtube_url": "http://www.youtube.com/RepRangel", "nickname": "Charlie", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Rangel", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "cbrangel", "birthdate": "1930-06-11", "bioguide_id": "R000053", "fec_id": "H6NY19029", "state": "NY", "crp_id": "N00000964", "official_rss": "", "facebook_id": "CBRangel", "party": "D", "email": "", "votesmart_id": "26979"}}, {"legislator": {"website": "http://www.reed.senate.gov/", "fax": "202-224-4680", "govtrack_id": "300081", "firstname": "John", "chamber": "senate", "middlename": "Francis", "lastname": "Reed", "congress_office": "728 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4642", "webform": "http://www.reed.senate.gov/contact/", "youtube_url": "", "nickname": "Jack", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Reed", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenJackReed", "birthdate": "1949-11-12", "bioguide_id": "R000122", "fec_id": "S6RI00163", "state": "RI", "crp_id": "N00000362", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "27060"}}, {"legislator": {"website": "http://reed.house.gov", "fax": "202-226-6599", "govtrack_id": "412393", "firstname": "Thomas", "chamber": "house", "middlename": "", "lastname": "Reed", "congress_office": "1037 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3161", "webform": "", "youtube_url": "http://www.youtube.com/user/CongressmanTomReed?feature=mexp", "nickname": "Tom", "gender": "M", "district": "29", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Reed", "in_office": true, "senate_class": "", "name_suffix": "II", "twitter_id": "tomreedcongress", "birthdate": "1971-11-18", "bioguide_id": "R000585", "fec_id": "H0NY29054", "state": "NY", "crp_id": "N00030949", "official_rss": "", "facebook_id": "153594440504", "party": "R", "email": "", "votesmart_id": "127046"}}, {"legislator": {"website": "http://rehberg.house.gov/", "fax": "202-225-5687", "govtrack_id": "400335", "firstname": "Dennis", "chamber": "house", "middlename": "", "lastname": "Rehberg", "congress_office": "2448 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3211", "webform": "http://www.house.gov/rehberg/issue.shtml", "youtube_url": "http://www.youtube.com/DennyRehberg", "nickname": "Denny", "gender": "M", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dennis_Rehberg", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DennyRehberg", "birthdate": "1955-10-05", "bioguide_id": "R000571", "fec_id": "H0MT00033", "state": "MT", "crp_id": "N00004645", "official_rss": "", "facebook_id": "denny.rehberg.mt", "party": "R", "email": "", "votesmart_id": "404"}}, {"legislator": {"website": "http://reichert.house.gov/", "fax": "202-225-4282", "govtrack_id": "400660", "firstname": "David", "chamber": "house", "middlename": "George", "lastname": "Reichert", "congress_office": "1730 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7761", "webform": "http://reichert.house.gov/Contact/ZipAuth.htm", "youtube_url": "http://www.youtube.com/repdavereichert", "nickname": "Dave", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_George_Reichert", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "davereichert", "birthdate": "1950-08-29", "bioguide_id": "R000578", "fec_id": "H4WA08071", "state": "WA", "crp_id": "N00026885", "official_rss": "", "facebook_id": "repdavereichert", "party": "R", "email": "", "votesmart_id": "51346"}}, {"legislator": {"website": "http://www.reid.senate.gov/", "fax": "202-224-7327", "govtrack_id": "300082", "firstname": "Harry", "chamber": "senate", "middlename": "M.", "lastname": "Reid", "congress_office": "522 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3542", "webform": "http://www.reid.senate.gov/contact/index.cfm", "youtube_url": "http://www.youtube.com/SenatorReid", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Harry_Reid", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenatorReid", "birthdate": "1939-12-02", "bioguide_id": "R000146", "fec_id": "S6NV00028", "state": "NV", "crp_id": "N00009922", "official_rss": "", "facebook_id": "HarryReid", "party": "D", "email": "", "votesmart_id": "53320"}}, {"legislator": {"website": "http://renacci.house.gov/", "fax": "202-225-3059", "govtrack_id": "412462", "firstname": "Jim", "chamber": "house", "middlename": "", "lastname": "Renacci", "congress_office": "130 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3876", "webform": "", "youtube_url": "http://www.youtube.com/repjimrenacci", "nickname": "", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jim_Renacci", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjimrenacci", "birthdate": "1958-12-03", "bioguide_id": "R000586", "fec_id": "H0OH16097", "state": "OH", "crp_id": "N00031127", "official_rss": "", "facebook_id": "217695830922", "party": "R", "email": "", "votesmart_id": "120678"}}, {"legislator": {"website": "http://reyes.house.gov/", "fax": "202-225-2016", "govtrack_id": "400337", "firstname": "Silvestre", "chamber": "house", "middlename": "", "lastname": "Reyes", "congress_office": "2210 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4831", "webform": "http://wwwc.house.gov/reyes/voice_your_opinion.asp", "youtube_url": "http://www.youtube.com/RepReyes", "nickname": "Silver", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Silvestre_Reyes", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "silvestrereyes", "birthdate": "1944-11-10", "bioguide_id": "R000170", "fec_id": "H6TX00115", "state": "TX", "crp_id": "N00006067", "official_rss": "", "facebook_id": "105434391510", "party": "D", "email": "", "votesmart_id": "292"}}, {"legislator": {"website": "http://ribble.house.gov/", "fax": "202- 225-5729", "govtrack_id": "412489", "firstname": "Reid", "chamber": "house", "middlename": "", "lastname": "Ribble", "congress_office": "1513 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5665", "webform": "", "youtube_url": "http://www.youtube.com/user/RepRibble", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Reid_Ribble", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRibble", "birthdate": "1956-04-15", "bioguide_id": "R000587", "fec_id": "H0WI08075", "state": "WI", "crp_id": "N00030968", "official_rss": "", "facebook_id": "157169920997203", "party": "R", "email": "", "votesmart_id": "126240"}}, {"legislator": {"website": "http://richardson.house.gov/", "fax": "202-225-7926", "govtrack_id": "412253", "firstname": "Laura", "chamber": "house", "middlename": "", "lastname": "Richardson", "congress_office": "1330 Longworth House Office Building", "eventful_id": "", "phone": "202-225-7924", "webform": "http://richardson.house.gov/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepLRichardson", "nickname": "", "gender": "F", "district": "37", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Laura_Richardson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "replrichardson", "birthdate": "1962-04-14", "bioguide_id": "R000581", "fec_id": "H8CA37137", "state": "CA", "crp_id": "N00029112", "official_rss": "", "facebook_id": "RepresentativeLauraRichardson", "party": "D", "email": "", "votesmart_id": "69508"}}, {"legislator": {"website": "http://richmond.house.gov/", "fax": "202- 225-1988", "govtrack_id": "412432", "firstname": "Cedric", "chamber": "house", "middlename": "L", "lastname": "Richmond", "congress_office": "415 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6636", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Cedric_Richmond", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "reprichmond", "birthdate": "1973-09-13", "bioguide_id": "R000588", "fec_id": "H8LA02054", "state": "LA", "crp_id": "N00030184", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "35384"}}, {"legislator": {"website": "http://rigell.house.gov/", "fax": "202-225-4218", "govtrack_id": "412483", "firstname": "Scott", "chamber": "house", "middlename": "", "lastname": "Rigell", "congress_office": "327 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4215", "webform": "", "youtube_url": "http://youtube.com/RepScottRigell", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Scott_Rigell", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repscottrigell", "birthdate": "1960-05-28", "bioguide_id": "R000589", "fec_id": "H0VA02084", "state": "VA", "crp_id": "N00030962", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "121807"}}, {"legislator": {"website": "http://www.risch.senate.gov", "fax": "202-224-2573", "govtrack_id": "412322", "firstname": "James", "chamber": "senate", "middlename": "E.", "lastname": "Risch", "congress_office": "483 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2752", "webform": "http://www.risch.senate.gov/public/index.cfm?p=Email", "youtube_url": "http://www.youtube.com/SenatorJamesRisch", "nickname": "Jim", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/James_Risch", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "", "birthdate": "1943-05-03", "bioguide_id": "R000584", "fec_id": "S8ID00092", "state": "ID", "crp_id": "N00029441", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "2919"}}, {"legislator": {"website": "http://rivera.house.gov/", "fax": "202-226-0346", "govtrack_id": "412415", "firstname": "David", "chamber": "house", "middlename": "", "lastname": "Rivera", "congress_office": "417 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2778", "webform": "", "youtube_url": "http://www.youtube.com/RepRivera", "nickname": "", "gender": "M", "district": "25", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Rivera", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRivera", "birthdate": "1965-09-16", "bioguide_id": "R000590", "fec_id": "H0FL25038", "state": "FL", "crp_id": "N00031887", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "31234"}}, {"legislator": {"website": "http://www.roberts.senate.gov/", "fax": "202-224-3514", "govtrack_id": "300083", "firstname": "Pat", "chamber": "senate", "middlename": "", "lastname": "Roberts", "congress_office": "109 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4774", "webform": "http://www.roberts.senate.gov/public/index.cfm?p=EmailPat", "youtube_url": "http://www.youtube.com/SenPatRoberts", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Pat_Roberts", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "senpatroberts", "birthdate": "1936-04-20", "bioguide_id": "R000307", "fec_id": "S6KS00080", "state": "KS", "crp_id": "N00005285", "official_rss": "", "facebook_id": "SenPatRoberts", "party": "R", "email": "", "votesmart_id": "26866"}}, {"legislator": {"website": "http://roby.house.gov/", "fax": "202-225-8913", "govtrack_id": "412394", "firstname": "Martha", "chamber": "house", "middlename": "", "lastname": "Roby", "congress_office": "414 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2901", "webform": "", "youtube_url": "http://www.youtube.com/user/RepMarthaRoby", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Martha_Roby", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMarthaRoby", "birthdate": "1976-07-26", "bioguide_id": "R000591", "fec_id": "H0AL02087", "state": "AL", "crp_id": "N00030768", "official_rss": "", "facebook_id": "174519582574426", "party": "R", "email": "", "votesmart_id": "71604"}}, {"legislator": {"website": "http://www.rockefeller.senate.gov/", "fax": "202-224-7665", "govtrack_id": "300084", "firstname": "John", "chamber": "senate", "middlename": "D.", "lastname": "Rockefeller", "congress_office": "531 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6472", "webform": "http://www.rockefeller.senate.gov/contact/email.cfm", "youtube_url": "http://www.youtube.com/SenatorRockefeller", "nickname": "Jay", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Rockefeller", "in_office": true, "senate_class": "II", "name_suffix": "IV", "twitter_id": "senrockefeller", "birthdate": "1937-06-18", "bioguide_id": "R000361", "fec_id": "S4WV00027", "state": "WV", "crp_id": "N00001685", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "53360"}}, {"legislator": {"website": "http://roe.house.gov/", "fax": "202-225-6356", "govtrack_id": "412310", "firstname": "David", "chamber": "house", "middlename": "P.", "lastname": "Roe", "congress_office": "419 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6356", "webform": "https://forms.house.gov/roe/contact-form.shtml", "youtube_url": "http://www.youtube.com/amandarlittle288", "nickname": "Phil", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Roe", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DrPhilRoe", "birthdate": "1945-07-21", "bioguide_id": "R000582", "fec_id": "H6TN01388", "state": "TN", "crp_id": "N00028463", "official_rss": "", "facebook_id": "130725126985966", "party": "R", "email": "", "votesmart_id": "65306"}}, {"legislator": {"website": "http://halrogers.house.gov/", "fax": "202-225-0940", "govtrack_id": "400340", "firstname": "Harold", "chamber": "house", "middlename": "", "lastname": "Rogers", "congress_office": "2406 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4601", "webform": "http://halrogers.house.gov/Contact.aspx", "youtube_url": "http://www.youtube.com/RepHalRogers", "nickname": "Hal", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Harold_Rogers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1937-12-31", "bioguide_id": "R000395", "fec_id": "H0KY05015", "state": "KY", "crp_id": "N00003473", "official_rss": "", "facebook_id": "6722039085", "party": "R", "email": "", "votesmart_id": "26875"}}, {"legislator": {"website": "http://house.gov/mike-rogers/", "fax": "202-226-8485", "govtrack_id": "400341", "firstname": "Michael", "chamber": "house", "middlename": "Dennis", "lastname": "Rogers", "congress_office": "324 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3261", "webform": "http://www.house.gov/mike-rogers/contact.shtml", "youtube_url": "http://www.youtube.com/MikeRogersAL03", "nickname": "Mike", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Rogers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeRogersAL", "birthdate": "1958-07-16", "bioguide_id": "R000575", "fec_id": "H2AL03032", "state": "AL", "crp_id": "N00024759", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "5705"}}, {"legislator": {"website": "http://mikerogers.house.gov/", "fax": "202-225-5820", "govtrack_id": "400342", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Rogers", "congress_office": "133 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4872", "webform": "http://www.mikerogers.house.gov/Contact.aspx", "youtube_url": "http://www.youtube.com/RepMikeRogers", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Rogers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeRogers", "birthdate": "1963-06-02", "bioguide_id": "R000572", "fec_id": "H0MI08042", "state": "MI", "crp_id": "N00009668", "official_rss": "", "facebook_id": "168209963203416", "party": "R", "email": "", "votesmart_id": "8751"}}, {"legislator": {"website": "http://rohrabacher.house.gov/", "fax": "202-225-0145", "govtrack_id": "400343", "firstname": "Dana", "chamber": "house", "middlename": "T.", "lastname": "Rohrabacher", "congress_office": "2300 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2415", "webform": "http://rohrabacher.house.gov/Contact/Zip.htm", "youtube_url": "", "nickname": "", "gender": "M", "district": "46", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dana_Rohrabacher", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "DanaRohrabacher", "birthdate": "1947-06-21", "bioguide_id": "R000409", "fec_id": "H8CA42061", "state": "CA", "crp_id": "N00007151", "official_rss": "", "facebook_id": "78476240421", "party": "R", "email": "", "votesmart_id": "26763"}}, {"legislator": {"website": "http://rokita.house.gov/", "fax": "", "govtrack_id": "412426", "firstname": "Todd", "chamber": "house", "middlename": "", "lastname": "Rokita", "congress_office": "236 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5037", "webform": "", "youtube_url": "http://www.youtube.com/reptoddrokita", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Todd_Rokita", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "ToddRokita", "birthdate": "1970-02-09", "bioguide_id": "R000592", "fec_id": "H0IN04170", "state": "IN", "crp_id": "N00031741", "official_rss": "", "facebook_id": "183180288372896", "party": "R", "email": "", "votesmart_id": "34167"}}, {"legislator": {"website": "http://rooney.house.gov/", "fax": "202-225-3132", "govtrack_id": "412311", "firstname": "Tom", "chamber": "house", "middlename": "", "lastname": "Rooney", "congress_office": "1529 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5792", "webform": "https://forms.house.gov/rooney/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongressmanRooney", "nickname": "", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Rooney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "TomRooney", "birthdate": "1970-11-21", "bioguide_id": "R000583", "fec_id": "H8FL16022", "state": "FL", "crp_id": "N00029018", "official_rss": "", "facebook_id": "117697790448", "party": "R", "email": "", "votesmart_id": "107800"}}, {"legislator": {"website": "http://roskam.house.gov/", "fax": "202-225-1166", "govtrack_id": "412202", "firstname": "Peter", "chamber": "house", "middlename": "J.", "lastname": "Roskam", "congress_office": "227 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4561", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RoskamIL06", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_Roskam", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "PeterRoskam", "birthdate": "1961-09-13", "bioguide_id": "R000580", "fec_id": "H6IL06117", "state": "IL", "crp_id": "N00004719", "official_rss": "", "facebook_id": "RepRoskam", "party": "R", "email": "", "votesmart_id": "6382"}}, {"legislator": {"website": "http://ros-lehtinen.house.gov/", "fax": "202-225-5620", "govtrack_id": "400344", "firstname": "Ileana", "chamber": "house", "middlename": "", "lastname": "Ros-Lehtinen", "congress_office": "2470 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3931", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/IleanaRosLehtinen", "nickname": "", "gender": "F", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Ileana_Ros-Lehtinen", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RosLehtinen", "birthdate": "1952-07-15", "bioguide_id": "R000435", "fec_id": "H0FL18025", "state": "FL", "crp_id": "N00002858", "official_rss": "", "facebook_id": "iroslehtinen", "party": "R", "email": "", "votesmart_id": "26815"}}, {"legislator": {"website": "http://dennisross.house.gov/", "fax": "202- 226-0585", "govtrack_id": "412411", "firstname": "Dennis", "chamber": "house", "middlename": "", "lastname": "Ross", "congress_office": "404 Cannon House Office Building", "eventful_id": "", "phone": "202-225-1252", "webform": "", "youtube_url": "http://www.youtube.com/RepDennisRoss", "nickname": "", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Dennis_Ross", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDennisRoss", "birthdate": "1959-10-18", "bioguide_id": "R000593", "fec_id": "H0FL12101", "state": "FL", "crp_id": "N00030645", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "12813"}}, {"legislator": {"website": "http://ross.house.gov/", "fax": "202-225-1314", "govtrack_id": "400345", "firstname": "Mike", "chamber": "house", "middlename": "", "lastname": "Ross", "congress_office": "2436 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3772", "webform": "http://ross.house.gov/?sectionid=77&sectiontree=76,77", "youtube_url": "http://www.youtube.com/MikeRossArkansas04", "nickname": "", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Mike_Ross", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeRoss", "birthdate": "1961-09-01", "bioguide_id": "R000573", "fec_id": "H0AR04038", "state": "AR", "crp_id": "N00009571", "official_rss": "", "facebook_id": "RepMikeRoss", "party": "D", "email": "", "votesmart_id": "24571"}}, {"legislator": {"website": "http://www.rothman.house.gov/", "fax": "202-225-5851", "govtrack_id": "400346", "firstname": "Steven", "chamber": "house", "middlename": "R.", "lastname": "Rothman", "congress_office": "2303 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5061", "webform": "https://forms.house.gov/rothman/webforms/issue_subscribe.htm", "youtube_url": "", "nickname": "Steve", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steven_Rothman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1952-10-14", "bioguide_id": "R000462", "fec_id": "H6NJ09165", "state": "NJ", "crp_id": "N00008619", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "481"}}, {"legislator": {"website": "http://roybal-allard.house.gov/", "fax": "202-226-0350", "govtrack_id": "400347", "firstname": "Lucille", "chamber": "house", "middlename": "", "lastname": "Roybal-Allard", "congress_office": "2330 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1766", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepRoybalAllard", "nickname": "", "gender": "F", "district": "34", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lucille_Roybal-Allard", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepRoybalAllard", "birthdate": "1941-06-12", "bioguide_id": "R000486", "fec_id": "H2CA33048", "state": "CA", "crp_id": "N00006671", "official_rss": "", "facebook_id": "RepRoybalAllard", "party": "D", "email": "", "votesmart_id": "26766"}}, {"legislator": {"website": "http://www.royce.house.gov/", "fax": "202-226-0335", "govtrack_id": "400348", "firstname": "Edward", "chamber": "house", "middlename": "R.", "lastname": "Royce", "congress_office": "2185 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4111", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepEdRoyce", "nickname": "Ed", "gender": "M", "district": "40", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Edward_Royce", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepEdRoyce", "birthdate": "1951-10-12", "bioguide_id": "R000487", "fec_id": "H6CA39020", "state": "CA", "crp_id": "N00008264", "official_rss": "", "facebook_id": "EdRoyce", "party": "R", "email": "", "votesmart_id": "26772"}}, {"legislator": {"website": "http://www.rubio.senate.gov", "fax": "202-224-3041", "govtrack_id": "412491", "firstname": "Marco", "chamber": "senate", "middlename": "", "lastname": "Rubio", "congress_office": "317 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-3041", "webform": "http://www.rubio.senate.gov/public/index.cfm/contact", "youtube_url": "http://www.youtube.com/SenatorMarcoRubio", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Marco_Rubio", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenRubioPress", "birthdate": "1971-05-28", "bioguide_id": "R000595", "fec_id": "S0FL00338", "state": "FL", "crp_id": "N00030612", "official_rss": "", "facebook_id": "MarcoRubio", "party": "R", "email": "", "votesmart_id": "1601"}}, {"legislator": {"website": "http://runyan.house.gov/", "fax": "202-225-0778", "govtrack_id": "412449", "firstname": "Jon", "chamber": "house", "middlename": "", "lastname": "Runyan", "congress_office": "1239 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4765", "webform": "", "youtube_url": "http://www.youtube.com/RepRunyan", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jon_Runyan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJonRunyan", "birthdate": "1973-11-27", "bioguide_id": "R000594", "fec_id": "H0NJ03153", "state": "NJ", "crp_id": "N00031988", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "121117"}}, {"legislator": {"website": "http://dutch.house.gov/", "fax": "202-225-3094", "govtrack_id": "400349", "firstname": "C.A. Dutch", "chamber": "house", "middlename": "", "lastname": "Ruppersberger", "congress_office": "2453 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3061", "webform": "http://dutch.house.gov/writedutch_za.shtml", "youtube_url": "http://www.youtube.com/Ruppersberger", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/C.A._Dutch_Ruppersberger", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Call_Me_Dutch", "birthdate": "1946-01-31", "bioguide_id": "R000576", "fec_id": "H2MD02160", "state": "MD", "crp_id": "N00025482", "official_rss": "", "facebook_id": "100001266049722", "party": "D", "email": "", "votesmart_id": "36130"}}, {"legislator": {"website": "http://house.gov/rush/", "fax": "202-226-0333", "govtrack_id": "400350", "firstname": "Bobby", "chamber": "house", "middlename": "L.", "lastname": "Rush", "congress_office": "2268 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4372", "webform": "http://www.house.gov/rush/zipauth.shtml", "youtube_url": "http://www.youtube.com/CongressmanRush", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bobby_Rush", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBobbyRush", "birthdate": "1946-11-23", "bioguide_id": "R000515", "fec_id": "H2IL01042", "state": "IL", "crp_id": "N00004887", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26831"}}, {"legislator": {"website": "http://house.gov/ryan/", "fax": "202-225-3393", "govtrack_id": "400351", "firstname": "Paul", "chamber": "house", "middlename": "D.", "lastname": "Ryan", "congress_office": "1233 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3031", "webform": "http://www.house.gov/ryan/email.htm", "youtube_url": "http://www.youtube.com/RepPaulRyan", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Paul_Ryan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "reppaulryan", "birthdate": "1970-01-29", "bioguide_id": "R000570", "fec_id": "H8WI01024", "state": "WI", "crp_id": "N00004357", "official_rss": "", "facebook_id": "reppaulryan", "party": "R", "email": "", "votesmart_id": "26344"}}, {"legislator": {"website": "http://timryan.house.gov/", "fax": "202-225-3719", "govtrack_id": "400352", "firstname": "Timothy", "chamber": "house", "middlename": "J.", "lastname": "Ryan", "congress_office": "1421 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5261", "webform": "http://timryan.house.gov/index.php?option=com_content&task=view&id=129&Itemid=42", "youtube_url": "http://www.youtube.com/TimRyanVision", "nickname": "Tim", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Timothy_Ryan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "timryan", "birthdate": "1973-07-16", "bioguide_id": "R000577", "fec_id": "H2OH17109", "state": "OH", "crp_id": "N00025280", "official_rss": "", "facebook_id": "timryan", "party": "D", "email": "", "votesmart_id": "45638"}}, {"legislator": {"website": "http://sablan.house.gov/", "fax": "202-226-4249", "govtrack_id": "412312", "firstname": "Gregorio", "chamber": "house", "middlename": "", "lastname": "Sablan", "congress_office": "423 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2646", "webform": "https://forms.house.gov/sablan/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongressmanSablan", "nickname": "", "gender": "M", "district": "0", "title": "Del", "congresspedia_url": "http://www.opencongress.org/wiki/Gregorio_Sablan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1955-01-19", "bioguide_id": "S001177", "fec_id": "H8MP00041", "state": "MP", "crp_id": "N00030418", "official_rss": "", "facebook_id": "153423912663", "party": "I", "email": "", "votesmart_id": "110903"}}, {"legislator": {"website": "http://lindasanchez.house.gov/", "fax": "202-226-1012", "govtrack_id": "400355", "firstname": "Linda", "chamber": "house", "middlename": "T.", "lastname": "Sanchez", "congress_office": "2423 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6676", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/LindaTSanchez", "nickname": "", "gender": "F", "district": "39", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Linda_Sanchez", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "replindasanchez", "birthdate": "1969-01-28", "bioguide_id": "S001156", "fec_id": "H2CA39078", "state": "CA", "crp_id": "N00024870", "official_rss": "", "facebook_id": "29921386086", "party": "D", "email": "", "votesmart_id": "29674"}}, {"legislator": {"website": "http://www.lorettasanchez.house.gov", "fax": "202-225-5859", "govtrack_id": "400356", "firstname": "Loretta", "chamber": "house", "middlename": "L.", "lastname": "Sanchez", "congress_office": "1114 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2965", "webform": "http://www.lorettasanchez.house.gov/index.php?option=com_content&task=view&id=218&Itemid=17", "youtube_url": "http://www.youtube.com/user/LorettaSanchezLive", "nickname": "", "gender": "F", "district": "47", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Loretta_Sanchez", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "lorettasanchez", "birthdate": "1960-01-07", "bioguide_id": "S000030", "fec_id": "H6CA46033", "state": "CA", "crp_id": "N00008274", "official_rss": "", "facebook_id": "LorettaSanchez", "party": "D", "email": "", "votesmart_id": "203"}}, {"legislator": {"website": "http://www.sanders.senate.gov/", "fax": "202-228-0776", "govtrack_id": "400357", "firstname": "Bernard", "chamber": "senate", "middlename": "", "lastname": "Sanders", "congress_office": "332 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-5141", "webform": "http://www.sanders.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorSanders", "nickname": "Bernie", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Bernard_Sanders", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "senatorsanders", "birthdate": "1941-09-08", "bioguide_id": "S000033", "fec_id": "H8VT01016", "state": "VT", "crp_id": "N00000528", "official_rss": "", "facebook_id": "senatorsanders", "party": "I", "email": "", "votesmart_id": "27110"}}, {"legislator": {"website": "http://sarbanes.house.gov/", "fax": "202-225-9219", "govtrack_id": "412212", "firstname": "John", "chamber": "house", "middlename": "P.", "lastname": "Sarbanes", "congress_office": "2444 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4016", "webform": "http://sarbanes.house.gov/federal.asp", "youtube_url": "http://www.youtube.com/JohnSarbanes", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Sarbanes", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1962-05-22", "bioguide_id": "S001168", "fec_id": "H6MD03292", "state": "MD", "crp_id": "N00027751", "official_rss": "", "facebook_id": "JSarbanes", "party": "D", "email": "", "votesmart_id": "66575"}}, {"legislator": {"website": "http://scalise.house.gov/", "fax": "202-226-0386", "govtrack_id": "412261", "firstname": "Stephen", "chamber": "house", "middlename": "J.", "lastname": "Scalise", "congress_office": "429 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3015", "webform": "http://www.scalise.house.gov/contactform_zipcheck.shtml", "youtube_url": "http://www.youtube.com/RepSteveScalise", "nickname": "Steve", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Stephen_Scalise", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1965-10-06", "bioguide_id": "S001176", "fec_id": "H0LA01087", "state": "LA", "crp_id": "N00009660", "official_rss": "", "facebook_id": "50936151681", "party": "R", "email": "", "votesmart_id": "9026"}}, {"legislator": {"website": "http://schakowsky.house.gov/", "fax": "202-226-6890", "govtrack_id": "400360", "firstname": "Janice", "chamber": "house", "middlename": "D.", "lastname": "Schakowsky", "congress_office": "2367 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2111", "webform": "http://www.house.gov/schakowsky/contact.shtml", "youtube_url": "http://www.youtube.com/JanSchakowsky", "nickname": "Jan", "gender": "F", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Janice_Schakowsky", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "janschakowsky", "birthdate": "1944-05-26", "bioguide_id": "S001145", "fec_id": "H8IL09067", "state": "IL", "crp_id": "N00004724", "official_rss": "", "facebook_id": "janschakowsky", "party": "D", "email": "", "votesmart_id": "6387"}}, {"legislator": {"website": "http://schiff.house.gov/", "fax": "202-225-5828", "govtrack_id": "400361", "firstname": "Adam", "chamber": "house", "middlename": "B.", "lastname": "Schiff", "congress_office": "2411 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4176", "webform": "http://schiff.house.gov/HoR/CA29/Contact+Information/Contact+Form.htm", "youtube_url": "http://www.youtube.com/adamschiff", "nickname": "", "gender": "M", "district": "29", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Adam_Schiff", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAdamSchiff", "birthdate": "1960-06-22", "bioguide_id": "S001150", "fec_id": "H0CA27085", "state": "CA", "crp_id": "N00009585", "official_rss": "", "facebook_id": "CongressmanSchiff", "party": "D", "email": "", "votesmart_id": "9489"}}, {"legislator": {"website": "http://schilling.house.gov/", "fax": "202- 225-5396", "govtrack_id": "412423", "firstname": "Robert", "chamber": "house", "middlename": "T", "lastname": "Schilling", "congress_office": "507 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5905", "webform": "", "youtube_url": "http://www.youtube.com/user/repbobbyschilling", "nickname": "Bobby", "gender": "M", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bobby_Schilling", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSchilling", "birthdate": "1964-01-23", "bioguide_id": "S001182", "fec_id": "H0IL17059", "state": "IL", "crp_id": "N00030668", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "116570"}}, {"legislator": {"website": "http://house.gov/schmidt/", "fax": "202-225-1992", "govtrack_id": "412010", "firstname": "Jean", "chamber": "house", "middlename": "", "lastname": "Schmidt", "congress_office": "2466 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3164", "webform": "http://www.house.gov/schmidt/contact.shtml", "youtube_url": "", "nickname": "", "gender": "F", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jean_Schmidt", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1951-11-29", "bioguide_id": "S001164", "fec_id": "H6OH02086", "state": "OH", "crp_id": "N00027526", "official_rss": "", "facebook_id": "108130217090", "party": "R", "email": "", "votesmart_id": "45475"}}, {"legislator": {"website": "http://schock.house.gov/", "fax": "202-225-9249", "govtrack_id": "412314", "firstname": "Aaron", "chamber": "house", "middlename": "", "lastname": "Schock", "congress_office": "328 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6201", "webform": "https://forms.house.gov/schock/contact-form.shtml", "youtube_url": "http://www.youtube.com/repaaronschock", "nickname": "", "gender": "M", "district": "18", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Aaron_Schock", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repaaronschock", "birthdate": "1981-05-28", "bioguide_id": "S001179", "fec_id": "H8IL18043", "state": "IL", "crp_id": "N00029273", "official_rss": "", "facebook_id": "70882853544", "party": "R", "email": "", "votesmart_id": "33428"}}, {"legislator": {"website": "http://schrader.house.gov/", "fax": "202-225-5699", "govtrack_id": "412315", "firstname": "Kurt", "chamber": "house", "middlename": "", "lastname": "Schrader", "congress_office": "314 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5711", "webform": "https://forms.house.gov/schrader/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepKurtSchrader", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kurt_Schrader", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repschrader", "birthdate": "1951-10-19", "bioguide_id": "S001180", "fec_id": "H8OR05107", "state": "OR", "crp_id": "N00030071", "official_rss": "", "facebook_id": "94978896695", "party": "D", "email": "", "votesmart_id": "10813"}}, {"legislator": {"website": "http://www.schumer.senate.gov/", "fax": "202-228-3027", "govtrack_id": "300087", "firstname": "Charles", "chamber": "senate", "middlename": "E.", "lastname": "Schumer", "congress_office": "322 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6542", "webform": "http://www.schumer.senate.gov/Contact/contact_chuck.cfm", "youtube_url": "http://www.youtube.com/senatorschumer", "nickname": "Chuck", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Charles_Schumer", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "chuckschumer", "birthdate": "1950-11-23", "bioguide_id": "S000148", "fec_id": "S8NY00082", "state": "NY", "crp_id": "N00001093", "official_rss": "", "facebook_id": "chuckschumer", "party": "D", "email": "", "votesmart_id": "26976"}}, {"legislator": {"website": "http://schwartz.house.gov/", "fax": "202-226-0611", "govtrack_id": "400647", "firstname": "Allyson", "chamber": "house", "middlename": "Y.", "lastname": "Schwartz", "congress_office": "1227 Longworth House Office Building", "eventful_id": "", "phone": "202-225-6111", "webform": "http://schwartz.house.gov/issue_subscribe.shtml", "youtube_url": "http://www.youtube.com/RepAllysonSchwartz", "nickname": "", "gender": "F", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Allyson_Schwartz", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1948-10-03", "bioguide_id": "S001162", "fec_id": "H4PA13124", "state": "PA", "crp_id": "N00001579", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "5239"}}, {"legislator": {"website": "http://schweikert.house.gov/", "fax": "", "govtrack_id": "412399", "firstname": "David", "chamber": "house", "middlename": "", "lastname": "Schweikert", "congress_office": "1205 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2190", "webform": "", "youtube_url": "http://youtube.com/RepDavidSchweikert", "nickname": "", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Schweikert", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepDavid", "birthdate": "1962-03-03", "bioguide_id": "S001183", "fec_id": "H4AZ06045", "state": "AZ", "crp_id": "N00006460", "official_rss": "", "facebook_id": "150338151681908", "party": "R", "email": "", "votesmart_id": "106387"}}, {"legislator": {"website": "http://davidscott.house.gov/", "fax": "202-225-4628", "govtrack_id": "400363", "firstname": "David", "chamber": "house", "middlename": "", "lastname": "Scott", "congress_office": "225 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2939", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepDavidScott", "nickname": "", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/David_Scott", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repdavidscott", "birthdate": "1946-06-27", "bioguide_id": "S001157", "fec_id": "H2GA13012", "state": "GA", "crp_id": "N00024871", "official_rss": "", "facebook_id": "113303673339", "party": "D", "email": "", "votesmart_id": "7826"}}, {"legislator": {"website": "http://austinscott.house.gov/", "fax": "202-225-3013", "govtrack_id": "412417", "firstname": "James", "chamber": "house", "middlename": "Austin", "lastname": "Scott", "congress_office": "516 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6531", "webform": "", "youtube_url": "http://www.youtube.com/RepAustinScott", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Austin_Scott", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "AustinScottGA08", "birthdate": "1969-12-10", "bioguide_id": "S001189", "fec_id": "H0GA08099", "state": "GA", "crp_id": "N00032457", "official_rss": "", "facebook_id": "RepAustinScott", "party": "R", "email": "", "votesmart_id": "11812"}}, {"legislator": {"website": "http://bobbyscott.house.gov/", "fax": "202-225-8354", "govtrack_id": "400364", "firstname": "Robert", "chamber": "house", "middlename": "C.", "lastname": "Scott", "congress_office": "1201 Longworth House Office Building", "eventful_id": "", "phone": "202-225-8351", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepBobbyScott", "nickname": "Bobby", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Scott", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repbobbyscott", "birthdate": "1947-04-30", "bioguide_id": "S000185", "fec_id": "H6VA01117", "state": "VA", "crp_id": "N00002147", "official_rss": "", "facebook_id": "CongressmanBobbyScott", "party": "D", "email": "", "votesmart_id": "27117"}}, {"legislator": {"website": "http://timscott.house.gov/", "fax": "202-225-3407", "govtrack_id": "412471", "firstname": "Tim", "chamber": "house", "middlename": "", "lastname": "Scott", "congress_office": "1117 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3176", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Tim_Scott", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTimScott", "birthdate": "1965-09-19", "bioguide_id": "S001184", "fec_id": "H0SC01279", "state": "SC", "crp_id": "N00031782", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "11940"}}, {"legislator": {"website": "http://sensenbrenner.house.gov/", "fax": "202-225-3190", "govtrack_id": "400365", "firstname": "James", "chamber": "house", "middlename": "F.", "lastname": "Sensenbrenner", "congress_office": "2449 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5101", "webform": "http://sensenbrenner.house.gov/email_zip.htm", "youtube_url": "http://www.youtube.com/RepSensenbrenner", "nickname": "Jim", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/James_Sensenbrenner", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1943-06-14", "bioguide_id": "S000244", "fec_id": "H8WI09050", "state": "WI", "crp_id": "N00004291", "official_rss": "", "facebook_id": "RepSensenbrenner", "party": "R", "email": "", "votesmart_id": "27142"}}, {"legislator": {"website": "http://serrano.house.gov/", "fax": "202-225-6001", "govtrack_id": "400366", "firstname": "Jose", "chamber": "house", "middlename": "E.", "lastname": "Serrano", "congress_office": "2227 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4361", "webform": "http://serrano.house.gov/Forms/Contact.aspx", "youtube_url": "http://www.youtube.com/CongressmanSerrano", "nickname": "", "gender": "M", "district": "16", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Jose_Serrano", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repjoseserrano", "birthdate": "1943-10-24", "bioguide_id": "S000248", "fec_id": "H0NY18065", "state": "NY", "crp_id": "N00001813", "official_rss": "", "facebook_id": "RepJoseSerrano", "party": "D", "email": "", "votesmart_id": "26981"}}, {"legislator": {"website": "http://www.sessions.senate.gov/", "fax": "202-224-3149", "govtrack_id": "300088", "firstname": "Jefferson", "chamber": "senate", "middlename": "B.", "lastname": "Sessions", "congress_office": "326 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4124", "webform": "http://www.sessions.senate.gov/public/index.cfm?FuseAction=ConstituentServices.ContactMe", "youtube_url": "http://www.youtube.com/SenatorSessions", "nickname": "Jeff", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jefferson_Sessions", "in_office": true, "senate_class": "II", "name_suffix": "III", "twitter_id": "SenatorSessions", "birthdate": "1946-12-24", "bioguide_id": "S001141", "fec_id": "S6AL00195", "state": "AL", "crp_id": "N00003062", "official_rss": "", "facebook_id": "jeffsessions", "party": "R", "email": "", "votesmart_id": "443"}}, {"legislator": {"website": "http://sessions.house.gov/", "fax": "202-225-5878", "govtrack_id": "400367", "firstname": "Peter", "chamber": "house", "middlename": "A.", "lastname": "Sessions", "congress_office": "2233 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2231", "webform": "http://www.house.gov/sessionsform/emailform.htm", "youtube_url": "http://www.youtube.com/PeteSessions", "nickname": "Pete", "gender": "M", "district": "32", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_Sessions", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "petesessions", "birthdate": "1955-03-22", "bioguide_id": "S000250", "fec_id": "H2TX03126", "state": "TX", "crp_id": "N00005681", "official_rss": "", "facebook_id": "petesessions", "party": "R", "email": "", "votesmart_id": "288"}}, {"legislator": {"website": "http://sewell.house.gov/", "fax": "202-226-9567", "govtrack_id": "412396", "firstname": "Terri", "chamber": "house", "middlename": "", "lastname": "Sewell", "congress_office": "1133 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2665", "webform": "", "youtube_url": "http://www.youtube.com/RepSewell", "nickname": "", "gender": "F", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Terri_Sewell", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTerriSewell", "birthdate": "1965-01-01", "bioguide_id": "S001185", "fec_id": "H0AL07086", "state": "AL", "crp_id": "N00030622", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "121621"}}, {"legislator": {"website": "http://www.shaheen.senate.gov", "fax": "", "govtrack_id": "412323", "firstname": "Jeanne", "chamber": "senate", "middlename": "", "lastname": "Shaheen", "congress_office": "520 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2841", "webform": "http://www.shaheen.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorShaheen", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jeanne_Shaheen", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "JeanneShaheen", "birthdate": "1947-01-28", "bioguide_id": "S001181", "fec_id": "S0NH00219", "state": "NH", "crp_id": "N00024790", "official_rss": "", "facebook_id": "SenatorShaheen", "party": "D", "email": "", "votesmart_id": "1663"}}, {"legislator": {"website": "http://www.shelby.senate.gov/", "fax": "202-224-3416", "govtrack_id": "300089", "firstname": "Richard", "chamber": "senate", "middlename": "C.", "lastname": "Shelby", "congress_office": "304 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5744", "webform": "http://www.shelby.senate.gov/public/index.cfm/emailsenatorshelby", "youtube_url": "http://www.youtube.com/SenatorRichardShelby", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Richard_Shelby", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenShelbyPress", "birthdate": "1934-05-06", "bioguide_id": "S000320", "fec_id": "S6AL00013", "state": "AL", "crp_id": "N00009920", "official_rss": "", "facebook_id": "RichardShelby", "party": "R", "email": "", "votesmart_id": "53266"}}, {"legislator": {"website": "http://bradsherman.house.gov/", "fax": "202-225-5879", "govtrack_id": "400371", "firstname": "Brad", "chamber": "house", "middlename": "J.", "lastname": "Sherman", "congress_office": "2242 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5911", "webform": "http://www.house.gov/sherman/contact/", "youtube_url": "http://www.youtube.com/ShermanCA27", "nickname": "", "gender": "M", "district": "27", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Brad_Sherman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BradSherman", "birthdate": "1954-10-24", "bioguide_id": "S000344", "fec_id": "H6CA24113", "state": "CA", "crp_id": "N00006897", "official_rss": "", "facebook_id": "63158229861", "party": "D", "email": "", "votesmart_id": "142"}}, {"legislator": {"website": "http://shimkus.house.gov/", "fax": "202-225-5880", "govtrack_id": "400373", "firstname": "John", "chamber": "house", "middlename": "M.", "lastname": "Shimkus", "congress_office": "2452 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5271", "webform": "http://www.house.gov/shimkus/emailme.shtml", "youtube_url": "http://www.youtube.com/repshimkus", "nickname": "", "gender": "M", "district": "19", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Shimkus", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepShimkus", "birthdate": "1958-02-21", "bioguide_id": "S000364", "fec_id": "H2IL20042", "state": "IL", "crp_id": "N00004961", "official_rss": "", "facebook_id": "repshimkus", "party": "R", "email": "", "votesmart_id": "246"}}, {"legislator": {"website": "http://shuler.house.gov/", "fax": "202-226-6422", "govtrack_id": "412225", "firstname": "Heath", "chamber": "house", "middlename": "", "lastname": "Shuler", "congress_office": "229 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6401", "webform": "http://shuler.house.gov/zipauth.htm", "youtube_url": "http://www.youtube.com/user/RepHeathShuler", "nickname": "", "gender": "M", "district": "11", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Heath_Shuler", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1971-12-31", "bioguide_id": "S001171", "fec_id": "H6NC11172", "state": "NC", "crp_id": "N00027655", "official_rss": "", "facebook_id": "CongressmanShuler", "party": "D", "email": "", "votesmart_id": "57781"}}, {"legislator": {"website": "http://house.gov/shuster/", "fax": "202-225-2486", "govtrack_id": "409888", "firstname": "Bill", "chamber": "house", "middlename": "", "lastname": "Shuster", "congress_office": "204 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2431", "webform": "http://www.house.gov/shuster/zipauth.htm", "youtube_url": "http://www.youtube.com/RepShuster", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bill_Shuster", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepBillShuster", "birthdate": "1960-01-10", "bioguide_id": "S001154", "fec_id": "H2PA09035", "state": "PA", "crp_id": "N00013770", "official_rss": "", "facebook_id": "Rep.Shuster", "party": "R", "email": "", "votesmart_id": "55693"}}, {"legislator": {"website": "http://simpson.house.gov/", "fax": "202-225-8216", "govtrack_id": "400376", "firstname": "Michael", "chamber": "house", "middlename": "K.", "lastname": "Simpson", "congress_office": "2312 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5531", "webform": "http://www.house.gov/simpson/emailme.shtml", "youtube_url": "http://www.youtube.com/CongMikeSimpson", "nickname": "Mike", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Simpson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "CongMikeSimpson", "birthdate": "1950-09-08", "bioguide_id": "S001148", "fec_id": "H8ID02064", "state": "ID", "crp_id": "N00006263", "official_rss": "", "facebook_id": "96007744606", "party": "R", "email": "", "votesmart_id": "2917"}}, {"legislator": {"website": "http://sires.house.gov/", "fax": "202-226-0792", "govtrack_id": "412186", "firstname": "Albio", "chamber": "house", "middlename": "", "lastname": "Sires", "congress_office": "2342 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-7919", "webform": "https://forms.house.gov/sires/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepSiresNJ13", "nickname": "", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Albio_Sires", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Rep_Albio_Sires", "birthdate": "1951-01-26", "bioguide_id": "S001165", "fec_id": "H6NJ13191", "state": "NJ", "crp_id": "N00027523", "official_rss": "", "facebook_id": "81058818750", "party": "D", "email": "", "votesmart_id": "22510"}}, {"legislator": {"website": "http://www.louise.house.gov", "fax": "202-225-7822", "govtrack_id": "400378", "firstname": "Louise", "chamber": "house", "middlename": "McIntosh", "lastname": "Slaughter", "congress_office": "2469 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3615", "webform": "http://www.louise.house.gov/index.php?option=com_content&task=view&id=506&Itemid=150", "youtube_url": "http://www.youtube.com/louiseslaughter", "nickname": "", "gender": "F", "district": "28", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Louise_McIntosh_Slaughter", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "louiseslaughter", "birthdate": "1929-08-14", "bioguide_id": "S000480", "fec_id": "H6NY03031", "state": "NY", "crp_id": "N00001311", "official_rss": "", "facebook_id": "LouiseSlaughter", "party": "D", "email": "", "votesmart_id": "26991"}}, {"legislator": {"website": "http://adamsmith.house.gov/", "fax": "202-225-5893", "govtrack_id": "400379", "firstname": "Adam", "chamber": "house", "middlename": "", "lastname": "Smith", "congress_office": "2402 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8901", "webform": "http://adamsmith.house.gov/Contact/", "youtube_url": "http://www.youtube.com/Congressmanadamsmith", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Adam_Smith", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Rep_Adam_Smith", "birthdate": "1965-06-15", "bioguide_id": "S000510", "fec_id": "H6WA09025", "state": "WA", "crp_id": "N00007833", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "845"}}, {"legislator": {"website": "http://adriansmith.house.gov/", "fax": "202-225-0207", "govtrack_id": "412217", "firstname": "Adrian", "chamber": "house", "middlename": "M.", "lastname": "Smith", "congress_office": "503 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6435", "webform": "http://www.house.gov/formadriansmith/issues_subscribe.htm", "youtube_url": "http://www.youtube.com/RepAdrianSmith", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Adrian_Smith", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepAdrianSmith", "birthdate": "1970-12-19", "bioguide_id": "S001172", "fec_id": "H6NE03115", "state": "NE", "crp_id": "N00027623", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "21284"}}, {"legislator": {"website": "http://chrissmith.house.gov/", "fax": "202-225-7768", "govtrack_id": "400380", "firstname": "Christopher", "chamber": "house", "middlename": "H.", "lastname": "Smith", "congress_office": "2373 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3765", "webform": "http://chrissmith.house.gov/zipauth.html", "youtube_url": "http://www.youtube.com/USRepChrisSmith", "nickname": "Chris", "gender": "M", "district": "4", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Christopher_Smith", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1953-03-04", "bioguide_id": "S000522", "fec_id": "H8NJ04014", "state": "NJ", "crp_id": "N00009816", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "26952"}}, {"legislator": {"website": "http://lamarsmith.house.gov/", "fax": "202-225-8628", "govtrack_id": "400381", "firstname": "Lamar", "chamber": "house", "middlename": "S.", "lastname": "Smith", "congress_office": "2409 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4236", "webform": "http://lamarsmith.house.gov/contact.aspx?section=Mail", "youtube_url": "http://www.youtube.com/lamarsmithtexas21", "nickname": "", "gender": "M", "district": "21", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lamar_Smith", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "LamarSmithTX21", "birthdate": "1947-11-19", "bioguide_id": "S000583", "fec_id": "H6TX21012", "state": "TX", "crp_id": "N00001811", "official_rss": "", "facebook_id": "LamarSmithTX21", "party": "R", "email": "", "votesmart_id": "27097"}}, {"legislator": {"website": "http://www.snowe.senate.gov/", "fax": "202-224-1946", "govtrack_id": "300091", "firstname": "Olympia", "chamber": "senate", "middlename": "Jean", "lastname": "Snowe", "congress_office": "154 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-5344", "webform": "http://www.snowe.senate.gov/public/index.cfm/contact?p=email", "youtube_url": "", "nickname": "", "gender": "F", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Olympia_Snowe", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenatorSnowe", "birthdate": "1947-02-21", "bioguide_id": "S000663", "fec_id": "S4ME00055", "state": "ME", "crp_id": "N00000480", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "26885"}}, {"legislator": {"website": "http://southerland.house.gov/", "fax": "202-225-5615", "govtrack_id": "412408", "firstname": "William", "chamber": "house", "middlename": "", "lastname": "Southerland", "congress_office": "1229 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5235", "webform": "", "youtube_url": "http://www.youtube.com/RepSteveSoutherland", "nickname": "Steve", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_Southerland", "in_office": true, "senate_class": "", "name_suffix": "II", "twitter_id": "Rep_Southerland", "birthdate": "1965-10-10", "bioguide_id": "S001186", "fec_id": "H0FL02110", "state": "FL", "crp_id": "N00031204", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "124329"}}, {"legislator": {"website": "http://speier.house.gov/", "fax": "202-347-0956", "govtrack_id": "412259", "firstname": "K. Jacqueline", "chamber": "house", "middlename": "", "lastname": "Speier", "congress_office": "211 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3531", "webform": "http://speier.house.gov/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/JackieSpeierCA12", "nickname": "Jackie", "gender": "F", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/K._Jacqueline_Speier", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repspeier", "birthdate": "1950-05-14", "bioguide_id": "S001175", "fec_id": "H8CA12171", "state": "CA", "crp_id": "N00029649", "official_rss": "", "facebook_id": "JackieSpeier", "party": "D", "email": "", "votesmart_id": "8425"}}, {"legislator": {"website": "http://www.stabenow.senate.gov/", "fax": "202-228-0325", "govtrack_id": "300093", "firstname": "Debbie", "chamber": "senate", "middlename": "Ann", "lastname": "Stabenow", "congress_office": "133 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4822", "webform": "http://www.stabenow.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorStabenow", "nickname": "", "gender": "F", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Debbie_Stabenow", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "StabenowPress", "birthdate": "1950-04-29", "bioguide_id": "S000770", "fec_id": "S8MI00281", "state": "MI", "crp_id": "N00004118", "official_rss": "", "facebook_id": "stabenow", "party": "D", "email": "", "votesmart_id": "515"}}, {"legislator": {"website": "http://stark.house.gov/", "fax": "202-226-3805", "govtrack_id": "400387", "firstname": "Fortney", "chamber": "house", "middlename": "H.", "lastname": "Stark", "congress_office": "239 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5065", "webform": "http://www.house.gov/stark/contact/index.htm", "youtube_url": "http://www.youtube.com/repstark", "nickname": "Pete", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Fortney_Stark", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "petestark", "birthdate": "1931-11-11", "bioguide_id": "S000810", "fec_id": "H6CA09023", "state": "CA", "crp_id": "N00007397", "official_rss": "", "facebook_id": "repstark", "party": "D", "email": "", "votesmart_id": "26736"}}, {"legislator": {"website": "http://stearns.house.gov/", "fax": "202-225-3973", "govtrack_id": "400388", "firstname": "Clifford", "chamber": "house", "middlename": "B.", "lastname": "Stearns", "congress_office": "2306 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5744", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/Repcliffstearns", "nickname": "Cliff", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Clifford_Stearns", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepCliffStearns", "birthdate": "1941-04-16", "bioguide_id": "S000822", "fec_id": "H8FL06056", "state": "FL", "crp_id": "N00002782", "official_rss": "", "facebook_id": "RepCliffStearns", "party": "R", "email": "", "votesmart_id": "26803"}}, {"legislator": {"website": "http://stivers.house.gov/", "fax": "202-225-3529", "govtrack_id": "412461", "firstname": "Steven", "chamber": "house", "middlename": "", "lastname": "Stivers", "congress_office": "1007 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2015", "webform": "", "youtube_url": "http://www.youtube.com/RepSteveStivers", "nickname": "", "gender": "M", "district": "15", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_Stivers", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepSteveStivers", "birthdate": "1965-03-24", "bioguide_id": "S001187", "fec_id": "H8OH15076", "state": "OH", "crp_id": "N00029574", "official_rss": "", "facebook_id": "116058275133542", "party": "R", "email": "", "votesmart_id": "45333"}}, {"legislator": {"website": "http://stutzman.house.gov", "fax": "202-225-3479", "govtrack_id": "412392", "firstname": "Marlin", "chamber": "house", "middlename": "", "lastname": "Stutzman", "congress_office": "1728 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4436", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Marlin_Stutzman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "marlinstutzman", "birthdate": "1976-08-31", "bioguide_id": "S001188", "fec_id": "H0IN03198", "state": "IN", "crp_id": "N00030891", "official_rss": "", "facebook_id": "CongressmanMarlinStutzman", "party": "R", "email": "", "votesmart_id": "34230"}}, {"legislator": {"website": "http://sullivan.house.gov", "fax": "202-225-9187", "govtrack_id": "400392", "firstname": "John", "chamber": "house", "middlename": "A.", "lastname": "Sullivan", "congress_office": "434 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2211", "webform": "http://sullivan.house.gov/zipauth.html", "youtube_url": "http://www.youtube.com/SullivanOK01", "nickname": "", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Sullivan", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "USRepSullivan", "birthdate": "1965-01-01", "bioguide_id": "S001155", "fec_id": "H2OK01093", "state": "OK", "crp_id": "N00013847", "official_rss": "", "facebook_id": "170752815378", "party": "R", "email": "", "votesmart_id": "24559"}}, {"legislator": {"website": "http://sutton.house.gov/", "fax": "202-225-2266", "govtrack_id": "412228", "firstname": "Betty", "chamber": "house", "middlename": "", "lastname": "Sutton", "congress_office": "1519 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3401", "webform": "http://sutton.house.gov/about/emailform.cfm", "youtube_url": "http://www.youtube.com/RepBettySutton", "nickname": "", "gender": "F", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Betty_Sutton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1963-07-31", "bioguide_id": "S001174", "fec_id": "H6OH13133", "state": "OH", "crp_id": "N00027901", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "8394"}}, {"legislator": {"website": "http://leeterry.house.gov/", "fax": "202-226-5452", "govtrack_id": "400400", "firstname": "Lee", "chamber": "house", "middlename": "R.", "lastname": "Terry", "congress_office": "2331 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4155", "webform": "http://www.house.gov/formleeterry/IMA/issue.htm", "youtube_url": "http://www.youtube.com/NebraskaTerry", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lee_Terry", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "LEETERRYNE", "birthdate": "1962-01-29", "bioguide_id": "T000459", "fec_id": "H8NE02139", "state": "NE", "crp_id": "N00005321", "official_rss": "", "facebook_id": "leeterry", "party": "R", "email": "", "votesmart_id": "21276"}}, {"legislator": {"website": "http://www.tester.senate.gov/", "fax": "202-224-8594", "govtrack_id": "412244", "firstname": "Jon", "chamber": "senate", "middlename": "", "lastname": "Tester", "congress_office": "724 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2644", "webform": "http://www.tester.senate.gov/Contact/index.cfm", "youtube_url": "http://www.youtube.com/SenatorJonTester", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Jon_Tester", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "", "birthdate": "1956-08-21", "bioguide_id": "T000464", "fec_id": "S6MT00162", "state": "MT", "crp_id": "N00027605", "official_rss": "", "facebook_id": "senatortester", "party": "D", "email": "", "votesmart_id": "20928"}}, {"legislator": {"website": "http://benniethompson.house.gov", "fax": "202-225-5898", "govtrack_id": "400402", "firstname": "Bennie", "chamber": "house", "middlename": "G.", "lastname": "Thompson", "congress_office": "2466 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5876", "webform": "https://forms.house.gov/benniethompson/contact-form.shtml", "youtube_url": "http://www.youtube.com/RepBennieThompson", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bennie_Thompson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "BennieGThompson", "birthdate": "1948-01-28", "bioguide_id": "T000193", "fec_id": "H4MS02068", "state": "MS", "crp_id": "N00003288", "official_rss": "", "facebook_id": "99445089418", "party": "D", "email": "", "votesmart_id": "26929"}}, {"legislator": {"website": "http://thompson.house.gov/", "fax": "202-225-5796", "govtrack_id": "412317", "firstname": "Glenn", "chamber": "house", "middlename": "W.", "lastname": "Thompson", "congress_office": "124 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5121", "webform": "https://forms.house.gov/thompson/contact-form.shtml", "youtube_url": "http://www.youtube.com/CongressmanGT", "nickname": "G.T.", "gender": "M", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Glenn_Thompson", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "CongressmanGT", "birthdate": "1959-07-27", "bioguide_id": "T000467", "fec_id": "H8PA05071", "state": "PA", "crp_id": "N00029736", "official_rss": "", "facebook_id": "CongressmanGT", "party": "R", "email": "", "votesmart_id": "24046"}}, {"legislator": {"website": "http://mikethompson.house.gov", "fax": "202-225-4335", "govtrack_id": "400403", "firstname": "Michael", "chamber": "house", "middlename": "C.", "lastname": "Thompson", "congress_office": "231 Cannon House Office Building", "eventful_id": "", "phone": "202-225-3311", "webform": "http://mikethompson.house.gov/contact/email.shtml", "youtube_url": "http://www.youtube.com/CongressmanMThompson", "nickname": "Mike", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Thompson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1951-01-24", "bioguide_id": "T000460", "fec_id": "H8CA01109", "state": "CA", "crp_id": "N00007419", "official_rss": "", "facebook_id": "RepMikeThompson", "party": "D", "email": "", "votesmart_id": "3564"}}, {"legislator": {"website": "http://thornberry.house.gov/", "fax": "202-225-3486", "govtrack_id": "400404", "firstname": "William", "chamber": "house", "middlename": "M.", "lastname": "Thornberry", "congress_office": "2209 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3706", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepMacThornberry", "nickname": "Mac", "gender": "M", "district": "13", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/William_Thornberry", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MacTXPress", "birthdate": "1958-07-15", "bioguide_id": "T000238", "fec_id": "H4TX13014", "state": "TX", "crp_id": "N00006052", "official_rss": "", "facebook_id": "7760165627", "party": "R", "email": "", "votesmart_id": "21706"}}, {"legislator": {"website": "http://www.thune.senate.gov/", "fax": "202-228-5429", "govtrack_id": "400546", "firstname": "John", "chamber": "senate", "middlename": "R.", "lastname": "Thune", "congress_office": "511 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-2321", "webform": "http://www.thune.senate.gov/public/index.cfm/contact", "youtube_url": "http://www.youtube.com/JohnThune", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/John_Thune", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "senjohnthune", "birthdate": "1961-01-07", "bioguide_id": "T000250", "fec_id": "S2SD00068", "state": "SD", "crp_id": "N00004572", "official_rss": "", "facebook_id": "63002536261", "party": "R", "email": "", "votesmart_id": "398"}}, {"legislator": {"website": "http://tiberi.house.gov/", "fax": "202-226-4523", "govtrack_id": "400406", "firstname": "Patrick", "chamber": "house", "middlename": "J.", "lastname": "Tiberi", "congress_office": "106 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5355", "webform": "http://www.house.gov/writerep", "youtube_url": "", "nickname": "Pat", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Patrick_Tiberi", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1962-10-21", "bioguide_id": "T000462", "fec_id": "H0OH12062", "state": "OH", "crp_id": "N00009699", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "8404"}}, {"legislator": {"website": "http://tierney.house.gov/", "fax": "202-225-5915", "govtrack_id": "400407", "firstname": "John", "chamber": "house", "middlename": "F.", "lastname": "Tierney", "congress_office": "2238 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-8020", "webform": "http://www.house.gov/tierney/IMA/email.shtml", "youtube_url": "http://www.youtube.com/CongressmanTierney", "nickname": "", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Tierney", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTierney", "birthdate": "1951-09-18", "bioguide_id": "T000266", "fec_id": "H4MA06033", "state": "MA", "crp_id": "N00000226", "official_rss": "", "facebook_id": "120477644524", "party": "D", "email": "", "votesmart_id": "553"}}, {"legislator": {"website": "http://tipton.house.gov/", "fax": "202-226-9669", "govtrack_id": "412405", "firstname": "Scott", "chamber": "house", "middlename": "", "lastname": "Tipton", "congress_office": "218 Cannon House Office Building", "eventful_id": "", "phone": "202-225-4761", "webform": "", "youtube_url": "http://www.youtube.com/RepScottTipton", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Scott_Tipton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepTipton", "birthdate": "1954-11-09", "bioguide_id": "T000470", "fec_id": "H6CO03139", "state": "CO", "crp_id": "N00027509", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "65403"}}, {"legislator": {"website": "http://tonko.house.gov/", "fax": "202-225-5077", "govtrack_id": "412319", "firstname": "Paul", "chamber": "house", "middlename": "D.", "lastname": "Tonko", "congress_office": "422 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5076", "webform": "https://forms.house.gov/tonko/contact-form.shtml", "youtube_url": "http://www.youtube.com/reppaultonko", "nickname": "", "gender": "M", "district": "21", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Paul_Tonko", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "PaulTonko", "birthdate": "1949-06-18", "bioguide_id": "T000469", "fec_id": "H8NY21203", "state": "NY", "crp_id": "N00030196", "official_rss": "", "facebook_id": "164036221404", "party": "D", "email": "", "votesmart_id": "4403"}}, {"legislator": {"website": "http://www.toomey.senate.gov/", "fax": "", "govtrack_id": "400408", "firstname": "Patrick", "chamber": "senate", "middlename": "", "lastname": "Toomey", "congress_office": "502 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4254", "webform": "http://www.toomey.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorPatToomey", "nickname": "Pat", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Pat_Toomey", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "SenToomey", "birthdate": "1961-11-17", "bioguide_id": "T000461", "fec_id": "S4PA00121", "state": "PA", "crp_id": "N00001489", "official_rss": "", "facebook_id": "senatortoomey", "party": "R", "email": "", "votesmart_id": "24096"}}, {"legislator": {"website": "http://house.gov/towns/", "fax": "202-225-1018", "govtrack_id": "400409", "firstname": "Edolphus", "chamber": "house", "middlename": "", "lastname": "Towns", "congress_office": "2232 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5936", "webform": "http://www.house.gov/towns/contact_form_zipcheck.shtml", "youtube_url": "http://www.youtube.com/CongressmanEdTowns", "nickname": "Ed", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Edolphus_Towns", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "edtowns", "birthdate": "1934-07-21", "bioguide_id": "T000326", "fec_id": "H2NY11017", "state": "NY", "crp_id": "N00001082", "official_rss": "", "facebook_id": "EdTowns", "party": "D", "email": "", "votesmart_id": "26973"}}, {"legislator": {"website": "http://tsongas.house.gov/", "fax": "202-226-0771", "govtrack_id": "412254", "firstname": "Nicola", "chamber": "house", "middlename": "S.", "lastname": "Tsongas", "congress_office": "1607 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3411", "webform": "http://tsongas.house.gov/?sectionid=11&sectiontree=3,11", "youtube_url": "http://www.youtube.com/user/RepTsongas", "nickname": "Niki", "gender": "F", "district": "5", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nicola_Tsongas", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "ntsongas", "birthdate": "1946-04-26", "bioguide_id": "T000465", "fec_id": "H8MA05143", "state": "MA", "crp_id": "N00029026", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "89417"}}, {"legislator": {"website": "http://turner.house.gov/", "fax": "202-225-6754", "govtrack_id": "400411", "firstname": "Michael", "chamber": "house", "middlename": "R.", "lastname": "Turner", "congress_office": "2454 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6465", "webform": "http://turner.house.gov/Contact/", "youtube_url": "http://www.youtube.com/CongressmanTurner", "nickname": "Mike", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Michael_Turner", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepMikeTurner", "birthdate": "1960-01-11", "bioguide_id": "T000463", "fec_id": "H2OH03067", "state": "OH", "crp_id": "N00025175", "official_rss": "", "facebook_id": "RepMikeTurner", "party": "R", "email": "", "votesmart_id": "45519"}}, {"legislator": {"website": "http://bobturner.house.gov/", "fax": "202-226-0218", "govtrack_id": "412499", "firstname": "Robert", "chamber": "house", "middlename": "L.", "lastname": "Turner", "congress_office": "2454 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6616", "webform": "https://bobturner.house.gov/contact-me", "youtube_url": "http://www.youtube.com/CongressmanBobTurner", "nickname": "Bob", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Bob_Turner", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "USRepBobTurner", "birthdate": "1941-05-02", "bioguide_id": "T000471", "fec_id": "H0NY09072", "state": "NY", "crp_id": "N00032601", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "127071"}}, {"legislator": {"website": "http://www.markudall.senate.gov", "fax": "202-226-7840", "govtrack_id": "400412", "firstname": "Mark", "chamber": "senate", "middlename": "E.", "lastname": "Udall", "congress_office": "328 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-5941", "webform": "http://www.markudall.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorMarkUdall", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Udall", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "MarkUdall", "birthdate": "1950-07-18", "bioguide_id": "U000038", "fec_id": "H8CO02087", "state": "CO", "crp_id": "N00008051", "official_rss": "", "facebook_id": "markudall", "party": "D", "email": "", "votesmart_id": "12329"}}, {"legislator": {"website": "http://www.tomudall.senate.gov", "fax": "202-226-1331", "govtrack_id": "400413", "firstname": "Tom", "chamber": "senate", "middlename": "S.", "lastname": "Udall", "congress_office": "110 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-6621", "webform": "http://www.tomudall.senate.gov/?p=contact", "youtube_url": "http://www.youtube.com/SenatorTomUdall", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Tom_Udall", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "SenatorTomUdall", "birthdate": "1948-05-18", "bioguide_id": "U000039", "fec_id": "H8NM03097", "state": "NM", "crp_id": "N00006561", "official_rss": "", "facebook_id": "senatortomudall", "party": "D", "email": "", "votesmart_id": "22658"}}, {"legislator": {"website": "http://house.gov/upton/", "fax": "202-225-4986", "govtrack_id": "400414", "firstname": "Frederick", "chamber": "house", "middlename": "Stephen", "lastname": "Upton", "congress_office": "2183 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3761", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepFredUpton", "nickname": "Fred", "gender": "M", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frederick_Stephen_Upton", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepFredUpton", "birthdate": "1953-04-23", "bioguide_id": "U000031", "fec_id": "H6MI04113", "state": "MI", "crp_id": "N00004133", "official_rss": "", "facebook_id": "RepFredUpton", "party": "R", "email": "", "votesmart_id": "26906"}}, {"legislator": {"website": "http://vanhollen.house.gov", "fax": "202-225-0375", "govtrack_id": "400415", "firstname": "Christopher", "chamber": "house", "middlename": "", "lastname": "Van Hollen", "congress_office": "1707 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5341", "webform": "http://vanhollen.house.gov/HoR/MD08/Contact+Information/Web+Contact/Contact+Form.htm", "youtube_url": "http://www.youtube.com/RepChrisVanHollen", "nickname": "Chris", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Christopher_Van_Hollen", "in_office": true, "senate_class": "", "name_suffix": "Jr.", "twitter_id": "chrisvanhollen", "birthdate": "1959-01-10", "bioguide_id": "V000128", "fec_id": "H2MD08126", "state": "MD", "crp_id": "N00013820", "official_rss": "", "facebook_id": "chrisvanhollen", "party": "D", "email": "", "votesmart_id": "6098"}}, {"legislator": {"website": "http://house.gov/velazquez/", "fax": "202-226-0327", "govtrack_id": "400416", "firstname": "Nydia", "chamber": "house", "middlename": "M.", "lastname": "Velazquez", "congress_office": "2302 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2361", "webform": "http://www.house.gov/velazquez/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/nydiavelazquez", "nickname": "", "gender": "F", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Nydia_Velazquez", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "NydiaVelazquez", "birthdate": "1953-03-28", "bioguide_id": "V000081", "fec_id": "H2NY00010", "state": "NY", "crp_id": "N00001102", "official_rss": "", "facebook_id": "8037068318", "party": "D", "email": "", "votesmart_id": "26975"}}, {"legislator": {"website": "http://visclosky.house.gov/", "fax": "202-225-2493", "govtrack_id": "400417", "firstname": "Peter", "chamber": "house", "middlename": "J.", "lastname": "Visclosky", "congress_office": "2256 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2461", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/user/PeteVisclosky1", "nickname": "Pete", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_Visclosky", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repvisclosky", "birthdate": "1949-08-13", "bioguide_id": "V000108", "fec_id": "H4IN01012", "state": "IN", "crp_id": "N00003813", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26851"}}, {"legislator": {"website": "http://www.vitter.senate.gov/", "fax": "202-228-5061", "govtrack_id": "400418", "firstname": "David", "chamber": "senate", "middlename": "B.", "lastname": "Vitter", "congress_office": "516 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-4623", "webform": "http://www.vitter.senate.gov/public/index.cfm?FuseAction=Contact.ContactForm", "youtube_url": "http://www.youtube.com/SenatorVitter", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/David_Vitter", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "DavidVitter", "birthdate": "1961-05-03", "bioguide_id": "V000127", "fec_id": "S4LA00057", "state": "LA", "crp_id": "N00009659", "official_rss": "", "facebook_id": "DavidVitter", "party": "R", "email": "", "votesmart_id": "4615"}}, {"legislator": {"website": "http://walberg.house.gov/", "fax": "202-225-6281", "govtrack_id": "412213", "firstname": "Timothy", "chamber": "house", "middlename": "L.", "lastname": "Walberg", "congress_office": "418 Cannon House Office Building", "eventful_id": "", "phone": "202-225-6276", "webform": "", "youtube_url": "http://www.youtube.com/RepWalberg", "nickname": "Tim", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Timothy_Walberg", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepWalberg", "birthdate": "1951-04-12", "bioguide_id": "W000798", "fec_id": "H4MI07103", "state": "MI", "crp_id": "N00026368", "official_rss": "", "facebook_id": "9268326479", "party": "R", "email": "", "votesmart_id": "8618"}}, {"legislator": {"website": "http://www.walden.house.gov/", "fax": "202-225-5774", "govtrack_id": "400419", "firstname": "Greg", "chamber": "house", "middlename": "P.", "lastname": "Walden", "congress_office": "2182 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-6730", "webform": "http://www.walden.house.gov/ContactGreg.ContactFormIQ.shtml", "youtube_url": "http://www.youtube.com/RepGregWalden", "nickname": "", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Greg_Walden", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repgregwalden", "birthdate": "1957-01-10", "bioguide_id": "W000791", "fec_id": "H6OR02116", "state": "OR", "crp_id": "N00007690", "official_rss": "", "facebook_id": "repgregwalden", "party": "R", "email": "", "votesmart_id": "2979"}}, {"legislator": {"website": "http://walsh.house.gov/", "fax": "202-225-7830", "govtrack_id": "412424", "firstname": "Joe", "chamber": "house", "middlename": "", "lastname": "Walsh", "congress_office": "432 Canon House Office Building", "eventful_id": "", "phone": "202-225-3711", "webform": "https://walsh.house.gov/contact-me", "youtube_url": "http://www.youtube.com/RepJoeWalsh", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Joe_Walsh_%28Illinois%29", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJoeWalsh", "birthdate": "1961-12-27", "bioguide_id": "W000811", "fec_id": "H0IL08090", "state": "IL", "crp_id": "N00004723", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "116545"}}, {"legislator": {"website": "http://walz.house.gov/", "fax": "202-225-3433", "govtrack_id": "412214", "firstname": "Timothy", "chamber": "house", "middlename": "J.", "lastname": "Walz", "congress_office": "1722 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2472", "webform": "http://walz.house.gov/zip_auth.shtm", "youtube_url": "http://www.youtube.com/1529tjw", "nickname": "Tim", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Timothy_Walz", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1964-04-06", "bioguide_id": "W000799", "fec_id": "H6MN01174", "state": "MN", "crp_id": "N00027467", "official_rss": "", "facebook_id": "TimWalz4Congress", "party": "D", "email": "", "votesmart_id": "65443"}}, {"legislator": {"website": "http://www.warner.senate.gov", "fax": "202-224-6295", "govtrack_id": "412321", "firstname": "Mark", "chamber": "senate", "middlename": "R.", "lastname": "Warner", "congress_office": "475 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-2023", "webform": "http://www.warner.senate.gov/public/index.cfm?p=Contact", "youtube_url": "http://www.youtube.com/SenatorMarkWarner", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Mark_Warner", "in_office": true, "senate_class": "II", "name_suffix": "", "twitter_id": "MarkWarner", "birthdate": "1954-12-15", "bioguide_id": "W000805", "fec_id": "S6VA00093", "state": "VA", "crp_id": "N00002097", "official_rss": "", "facebook_id": "MarkRWarner", "party": "D", "email": "", "votesmart_id": "535"}}, {"legislator": {"website": "http://wassermanschultz.house.gov/", "fax": "202-225-2052", "govtrack_id": "400623", "firstname": "Debbie", "chamber": "house", "middlename": "", "lastname": "Wasserman Schultz", "congress_office": "118 Cannon House Office Building", "eventful_id": "", "phone": "202-225-7931", "webform": "http://wassermanschultz.house.gov/zipauth.htm", "youtube_url": "http://www.youtube.com/RepWassermanSchultz", "nickname": "", "gender": "F", "district": "20", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Debbie_Wasserman_Schultz", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1966-09-27", "bioguide_id": "W000797", "fec_id": "H4FL20023", "state": "FL", "crp_id": "N00026106", "official_rss": "", "facebook_id": "88904724121", "party": "D", "email": "", "votesmart_id": "24301"}}, {"legislator": {"website": "http://waters.house.gov/", "fax": "202-225-7854", "govtrack_id": "400422", "firstname": "Maxine", "chamber": "house", "middlename": "", "lastname": "Waters", "congress_office": "2344 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2201", "webform": "http://www.house.gov/waters/IMA/issue.htm", "youtube_url": "http://www.youtube.com/MaxineWaters", "nickname": "", "gender": "F", "district": "35", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Maxine_Waters", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MaxineWaters", "birthdate": "1938-08-15", "bioguide_id": "W000187", "fec_id": "H4CA23011", "state": "CA", "crp_id": "N00006690", "official_rss": "", "facebook_id": "MaxineWaters", "party": "D", "email": "", "votesmart_id": "26759"}}, {"legislator": {"website": "http://watt.house.gov/", "fax": "202-225-1512", "govtrack_id": "400424", "firstname": "Melvin", "chamber": "house", "middlename": "Luther", "lastname": "Watt", "congress_office": "2304 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-1510", "webform": "http://www.house.gov/formwatt/IMA/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/user/Wattnc12", "nickname": "Mel", "gender": "M", "district": "12", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Melvin_Watt", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "MelWattNC12", "birthdate": "1945-08-26", "bioguide_id": "W000207", "fec_id": "H2NC12021", "state": "NC", "crp_id": "N00002328", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26997"}}, {"legislator": {"website": "http://waxman.house.gov", "fax": "202-225-4099", "govtrack_id": "400425", "firstname": "Henry", "chamber": "house", "middlename": "A.", "lastname": "Waxman", "congress_office": "2204 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3976", "webform": "http://waxman.house.gov/Contact/", "youtube_url": "", "nickname": "", "gender": "M", "district": "30", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Henry_Waxman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1939-09-12", "bioguide_id": "W000215", "fec_id": "H6CA24048", "state": "CA", "crp_id": "N00001861", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "26753"}}, {"legislator": {"website": "http://www.webb.senate.gov/", "fax": "202-228-6363", "govtrack_id": "412249", "firstname": "James", "chamber": "senate", "middlename": "H.", "lastname": "Webb", "congress_office": "248 Russell Senate Office Building", "eventful_id": "", "phone": "202-224-4024", "webform": "http://www.webb.senate.gov/contact.cfm", "youtube_url": "http://www.youtube.com/SenatorWebb", "nickname": "Jim", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/James_Webb", "in_office": true, "senate_class": "I", "name_suffix": "Jr.", "twitter_id": "", "birthdate": "1946-02-09", "bioguide_id": "W000803", "fec_id": "S6VA00127", "state": "VA", "crp_id": "N00028058", "official_rss": "", "facebook_id": "jimwebb", "party": "D", "email": "", "votesmart_id": "60043"}}, {"legislator": {"website": "http://webster.house.gov/", "fax": "202-225-0999", "govtrack_id": "412410", "firstname": "Daniel", "chamber": "house", "middlename": "", "lastname": "Webster", "congress_office": "1039 Longworth House Office Building", "eventful_id": "", "phone": "202-225-2176", "webform": "", "youtube_url": "http://www.youtube.com/repdanwebster", "nickname": "", "gender": "M", "district": "8", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Daniel_Webster", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepWebster", "birthdate": "1949-04-27", "bioguide_id": "W000806", "fec_id": "H0FL08208", "state": "FL", "crp_id": "N00026335", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "24302"}}, {"legislator": {"website": "http://welch.house.gov/", "fax": "202-225-6790", "govtrack_id": "412239", "firstname": "Peter", "chamber": "house", "middlename": "F.", "lastname": "Welch", "congress_office": "1404 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4115", "webform": "http://www.house.gov/formwelch/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RepPeterWelch", "nickname": "", "gender": "M", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Peter_Welch", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1947-05-02", "bioguide_id": "W000800", "fec_id": "H6VT00160", "state": "VT", "crp_id": "N00000515", "official_rss": "", "facebook_id": "PeterWelch", "party": "D", "email": "", "votesmart_id": "51272"}}, {"legislator": {"website": "http://west.house.gov/", "fax": "202-225-8398", "govtrack_id": "412413", "firstname": "Allen", "chamber": "house", "middlename": "", "lastname": "West", "congress_office": "1708 Longworth House Office Building", "eventful_id": "", "phone": "202-225-3026", "webform": "", "youtube_url": "http://www.youtube.com/AllenWestFl", "nickname": "", "gender": "M", "district": "22", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Allen_West", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "AllenWest", "birthdate": "1961-02-07", "bioguide_id": "W000807", "fec_id": "H8FL22038", "state": "FL", "crp_id": "N00029131", "official_rss": "", "facebook_id": "AllenWestFL", "party": "R", "email": "", "votesmart_id": "124348"}}, {"legislator": {"website": "http://westmoreland.house.gov/", "fax": "202-225-2515", "govtrack_id": "400627", "firstname": "Lynn", "chamber": "house", "middlename": "A.", "lastname": "Westmoreland", "congress_office": "2433 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5901", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/RepLynnWestmoreland", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lynn_Westmoreland", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repwestmoreland", "birthdate": "1950-04-02", "bioguide_id": "W000796", "fec_id": "H4GA08067", "state": "GA", "crp_id": "N00026163", "official_rss": "", "facebook_id": "71389451419", "party": "R", "email": "", "votesmart_id": "8001"}}, {"legislator": {"website": "http://www.whitehouse.senate.gov/", "fax": "202-228-6362", "govtrack_id": "412247", "firstname": "Sheldon", "chamber": "senate", "middlename": "", "lastname": "Whitehouse", "congress_office": "717 Hart Senate Office Building", "eventful_id": "", "phone": "202-224-2921", "webform": "http://www.whitehouse.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenatorWhitehouse", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Sheldon_Whitehouse", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "SenWhitehouse", "birthdate": "1955-10-20", "bioguide_id": "W000802", "fec_id": "S6RI00221", "state": "RI", "crp_id": "N00027533", "official_rss": "", "facebook_id": "10519905140", "party": "D", "email": "", "votesmart_id": "2572"}}, {"legislator": {"website": "http://whitfield.house.gov/", "fax": "202-225-3547", "govtrack_id": "400431", "firstname": "Edward", "chamber": "house", "middlename": "", "lastname": "Whitfield", "congress_office": "2368 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-3115", "webform": "http://whitfield.house.gov/contact/index.shtml", "youtube_url": "http://www.youtube.com/WhitfieldKY01", "nickname": "Ed", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Edward_Whitfield", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repedwhitfield", "birthdate": "1943-05-25", "bioguide_id": "W000413", "fec_id": "H4KY01040", "state": "KY", "crp_id": "N00003467", "official_rss": "", "facebook_id": "91115765425", "party": "R", "email": "", "votesmart_id": "21873"}}, {"legislator": {"website": "http://www.wicker.senate.gov", "fax": "202-228-0378", "govtrack_id": "400432", "firstname": "Roger", "chamber": "senate", "middlename": "F.", "lastname": "Wicker", "congress_office": "555 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-6253", "webform": "http://www.wicker.senate.gov/public/index.cfm?FuseAction=Contact.EMailSenatorWicker", "youtube_url": "http://www.youtube.com/senatorwicker", "nickname": "", "gender": "M", "district": "Junior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Roger_Wicker", "in_office": true, "senate_class": "I", "name_suffix": "", "twitter_id": "rogerwicker", "birthdate": "1951-07-05", "bioguide_id": "W000437", "fec_id": "H4MS01078", "state": "MS", "crp_id": "N00003280", "official_rss": "", "facebook_id": "wicker", "party": "R", "email": "", "votesmart_id": "21926"}}, {"legislator": {"website": "http://joewilson.house.gov/", "fax": "202-225-2455", "govtrack_id": "400433", "firstname": "Addison", "chamber": "house", "middlename": "Graves", "lastname": "Wilson", "congress_office": "2229 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-2452", "webform": "http://www.house.gov/formwilson/IMA/issue.htm", "youtube_url": "http://www.youtube.com/RepJoeWilson", "nickname": "Joe", "gender": "M", "district": "2", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Addison_Wilson", "in_office": true, "senate_class": "", "name_suffix": "Sr.", "twitter_id": "CongJoeWilson", "birthdate": "1947-07-31", "bioguide_id": "W000795", "fec_id": "H2SC02059", "state": "SC", "crp_id": "N00024809", "official_rss": "", "facebook_id": "JoeWilson", "party": "R", "email": "", "votesmart_id": "3985"}}, {"legislator": {"website": "http://wilson.house.gov/", "fax": "202-226-0777", "govtrack_id": "412412", "firstname": "Frederica", "chamber": "house", "middlename": "", "lastname": "Wilson", "congress_office": "2229 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-4506", "webform": "", "youtube_url": "http://www.youtube.com/repfredericawilson", "nickname": "", "gender": "F", "district": "17", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frederica_Wilson", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepWilson", "birthdate": "1942-11-05", "bioguide_id": "W000808", "fec_id": "H0FL17068", "state": "FL", "crp_id": "N00030650", "official_rss": "", "facebook_id": "", "party": "D", "email": "", "votesmart_id": "17319"}}, {"legislator": {"website": "http://wittman.house.gov/", "fax": "202-225-4382", "govtrack_id": "412255", "firstname": "Robert", "chamber": "house", "middlename": "J.", "lastname": "Wittman", "congress_office": "1317 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4261", "webform": "https://forms.house.gov/wittman/IMA/webforms/issue_subscribe.htm", "youtube_url": "http://www.youtube.com/RobWittman", "nickname": "Rob", "gender": "M", "district": "1", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Robert_Wittman", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RobWittman", "birthdate": "1959-02-03", "bioguide_id": "W000804", "fec_id": "H8VA01147", "state": "VA", "crp_id": "N00029459", "official_rss": "", "facebook_id": "RepRobWittman", "party": "R", "email": "", "votesmart_id": "58133"}}, {"legislator": {"website": "http://wolf.house.gov/", "fax": "202-225-0437", "govtrack_id": "400435", "firstname": "Frank", "chamber": "house", "middlename": "Rudolph", "lastname": "Wolf", "congress_office": "241 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5136", "webform": "http://www.house.gov/formwolf/contact_email/emailzip.shtml", "youtube_url": "http://www.youtube.com/RepFrankWolf", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Frank_Wolf", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepWOLFPress", "birthdate": "1939-01-30", "bioguide_id": "W000672", "fec_id": "H6VA10050", "state": "VA", "crp_id": "N00002073", "official_rss": "", "facebook_id": "RepFrankWolf", "party": "R", "email": "", "votesmart_id": "27120"}}, {"legislator": {"website": "http://womack.house.gov/", "fax": "202-225-5713", "govtrack_id": "412402", "firstname": "Steve", "chamber": "house", "middlename": "", "lastname": "Womack", "congress_office": "1508 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4301", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Steve_Womack", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "Rep_SteveWomack", "birthdate": "1957-02-18", "bioguide_id": "W000809", "fec_id": "H0AR03055", "state": "AR", "crp_id": "N00031857", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "71815"}}, {"legislator": {"website": "http://woodall.house.gov/", "fax": "202-225-4696", "govtrack_id": "412416", "firstname": "Rob", "chamber": "house", "middlename": "", "lastname": "Woodall", "congress_office": "1725 Longworth House Office Building", "eventful_id": "", "phone": "202-225-4272", "webform": "", "youtube_url": "", "nickname": "", "gender": "M", "district": "7", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Rob_Woodall", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1970-02-11", "bioguide_id": "W000810", "fec_id": "H0GA07133", "state": "GA", "crp_id": "N00032416", "official_rss": "", "facebook_id": "103931946305115", "party": "R", "email": "", "votesmart_id": "122251"}}, {"legislator": {"website": "http://woolsey.house.gov/", "fax": "202-225-5163", "govtrack_id": "400436", "firstname": "Lynn", "chamber": "house", "middlename": "C.", "lastname": "Woolsey", "congress_office": "2263 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5161", "webform": "http://woolsey.house.gov/contactemailform.asp", "youtube_url": "http://www.youtube.com/RepLynnWoolsey", "nickname": "", "gender": "F", "district": "6", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Lynn_Woolsey", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepLynnWoolsey", "birthdate": "1937-11-03", "bioguide_id": "W000738", "fec_id": "H2CA01045", "state": "CA", "crp_id": "N00007458", "official_rss": "", "facebook_id": "RepLynnWoolsey", "party": "D", "email": "", "votesmart_id": "26733"}}, {"legislator": {"website": "http://www.wyden.senate.gov/", "fax": "202-228-2717", "govtrack_id": "300100", "firstname": "Ron", "chamber": "senate", "middlename": "", "lastname": "Wyden", "congress_office": "223 Dirksen Senate Office Building", "eventful_id": "", "phone": "202-224-5244", "webform": "http://www.wyden.senate.gov/contact/", "youtube_url": "http://www.youtube.com/SenRonWyden", "nickname": "", "gender": "M", "district": "Senior Seat", "title": "Sen", "congresspedia_url": "http://www.opencongress.org/wiki/Ron_Wyden", "in_office": true, "senate_class": "III", "name_suffix": "", "twitter_id": "", "birthdate": "1949-05-03", "bioguide_id": "W000779", "fec_id": "S6OR00110", "state": "OR", "crp_id": "N00007724", "official_rss": "", "facebook_id": "wyden", "party": "D", "email": "", "votesmart_id": "27036"}}, {"legislator": {"website": "http://yarmuth.house.gov/", "fax": "202-225-5776", "govtrack_id": "412211", "firstname": "John", "chamber": "house", "middlename": "", "lastname": "Yarmuth", "congress_office": "435 Cannon House Office Building", "eventful_id": "", "phone": "202-225-5401", "webform": "http://yarmuth.house.gov/?sectionid=68&sectiontree=6,29,68", "youtube_url": "http://www.youtube.com/RepJohnYarmuth", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/John_Yarmuth", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepJohnYarmuth", "birthdate": "1947-11-04", "bioguide_id": "Y000062", "fec_id": "H6KY03124", "state": "KY", "crp_id": "N00028073", "official_rss": "", "facebook_id": "214258646163", "party": "D", "email": "", "votesmart_id": "58579"}}, {"legislator": {"website": "http://yoder.house.gov/", "fax": "202- 225-2807", "govtrack_id": "412430", "firstname": "Kevin", "chamber": "house", "middlename": "", "lastname": "Yoder", "congress_office": "214 Cannon House Office Building", "eventful_id": "", "phone": "202-225-2865", "webform": "", "youtube_url": "http://www.youtube.com/user/RepYoder", "nickname": "", "gender": "M", "district": "3", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Kevin_Yoder", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "KevinYoder", "birthdate": "1976-01-08", "bioguide_id": "Y000063", "fec_id": "H0KS03137", "state": "KS", "crp_id": "N00031502", "official_rss": "", "facebook_id": "154026694650252", "party": "R", "email": "", "votesmart_id": "34433"}}, {"legislator": {"website": "http://house.gov/young/", "fax": "202-225-9764", "govtrack_id": "400439", "firstname": "C. W. Bill", "chamber": "house", "middlename": "", "lastname": "Young", "congress_office": "2407 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5961", "webform": "http://www.house.gov/writerep", "youtube_url": "http://www.youtube.com/user/CongressmanBillYoung", "nickname": "", "gender": "M", "district": "10", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/C._W._Bill_Young", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "", "birthdate": "1930-12-16", "bioguide_id": "Y000031", "fec_id": "H6FL06035", "state": "FL", "crp_id": "N00001817", "official_rss": "", "facebook_id": "CongressmanBillYoung", "party": "R", "email": "", "votesmart_id": "26802"}}, {"legislator": {"website": "http://donyoung.house.gov/", "fax": "202-225-0425", "govtrack_id": "400440", "firstname": "Donald", "chamber": "house", "middlename": "E.", "lastname": "Young", "congress_office": "2314 Rayburn House Office Building", "eventful_id": "", "phone": "202-225-5765", "webform": "http://donyoung.house.gov/Contact/", "youtube_url": "http://www.youtube.com/RepDonYoung", "nickname": "Don", "gender": "M", "district": "0", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Donald_Young", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "repdonyoung", "birthdate": "1933-06-09", "bioguide_id": "Y000033", "fec_id": "H6AK00045", "state": "AK", "crp_id": "N00007999", "official_rss": "", "facebook_id": "RepDonYoung", "party": "R", "email": "", "votesmart_id": "26717"}}, {"legislator": {"website": "http://toddyoung.house.gov/", "fax": "202-226-6866", "govtrack_id": "412428", "firstname": "Todd", "chamber": "house", "middlename": "", "lastname": "Young", "congress_office": "1721 Longworth House Office Building", "eventful_id": "", "phone": "202-225-5315", "webform": "", "youtube_url": "http://www.youtube.com/RepToddYoung", "nickname": "", "gender": "M", "district": "9", "title": "Rep", "congresspedia_url": "http://www.opencongress.org/wiki/Todd_Young", "in_office": true, "senate_class": "", "name_suffix": "", "twitter_id": "RepToddYoung", "birthdate": "1972-08-24", "bioguide_id": "Y000064", "fec_id": "H0IN09070", "state": "IN", "crp_id": "N00030670", "official_rss": "", "facebook_id": "", "party": "R", "email": "", "votesmart_id": "120345"}}]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment