Skip to content

Instantly share code, notes, and snippets.

@luk3thomas
Last active January 4, 2016 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luk3thomas/8681743 to your computer and use it in GitHub Desktop.
Save luk3thomas/8681743 to your computer and use it in GitHub Desktop.
Congressional Voting

Show the relationship between senority and how often a congressman votes along party lines.

Demo

<!DOCTYPE html>
<html>
<head>
<title>Congress Members</title>
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<style>
body {
font: 12px/1.5 helvetica, sans-serif;
text-align:center;
}
h1 {
font-size:4em;
}
.label {
font-size:12px;
fill:#888;
}
#links {
margin:0;
list-style:none;
text-align:center;
}
#links li {
padding:0 .5em;
display:inline-block;
text-align:left;
}
#links label {
display:block;
}
.axis path {
fill:none;
stroke-width:.2px;
stroke:#888;
}
.member {
stroke-width:.2px;
stroke:#888;
}
.member.active {
stroke-width:.3em;
stroke:rgba(0,0,0,.5);
}
.blue-start {
stop-color:#3498db;
}
.blue-stop {
stop-color:#2980b9;
}
.green-start {
stop-color:#2ecc71;
}
.green-stop {
stop-color:#27ae60;
}
.red-start {
stop-color:#e74c3c;
}
.red-stop {
stop-color:#c0392b;
}
.tip {
padding:1em;
background:rgba(255,255,255,.9);
box-shadow:0 0 .3em silver;
border-radius:.5em;
width:200px;
position:absolute;
}
.tip .name {
font-weight:bold;
}
.tip .state {
display:block;
color:#9c9c9c;
}
.tip .seniority {
padding-right:1.2em;
}
.tip .percent {
font-size:.8em;
padding-left:.3em;
}
.tip table {
width:100%;
}
.tip td {
font-size:.9em;
text-align:left;
}
.tip td:last-child {
text-align:right;
}
</style>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.0/d3.min.js"></script>
</head>
<body>
<ul id="links">
<li>
<label for="party">Party</label>
<select id="party">
<option value="all">All</option>
<option value="R">Republicans</option>
<option value="D">Democrats</option>
</select>
</li>
<li>
<label for="seniority">Seniority</label>
<select id="seniority">
<option value="all">All</option>
<option value=".75">Top 25%</option>
<option value=".50">Top 50%</option>
<option value="-.50">Bottom 50%</option>
<option value="-.25">Bottom 25%</option>
<option value="-.15">Bottom 15%</option>
<option value="-.05">Bottom 5%</option>
</select>
</li>
</ul>
<div id="content"></div>
<script>
// version 0.0.3
var Eventer=function(){if(!(this instanceof Eventer))return new Eventer;this.publish=function(b,c){topics=a(b),topics.forEach(function(a){"object"==typeof cache[a]&&cache[a].forEach(function(a){a.apply(this,c||[])})})},this.subscribe=function(a,b){var c=[].concat(b);return c.forEach(function(b){cache[a]||(cache[a]=[]),cache[a].push(b)}),[a,b]},this.unsubscribe=function(a,b){cache[a]&&cache[a].forEach(function(c,d){c==b&&cache[a].splice(d,1)})},this.queue=function(){return cache},this.on=this.subscribe,this.off=this.unsubscribe,this.trigger=this.publish,cache={};var a=function(a){return"string"==typeof a?a.split(" "):a};return this};
var eventer = new Eventer;
var margin = 200;
var width = window.innerWidth - margin,
height = window.innerHeight - margin;
var Graph = function() {
var scale;
// Setup
var svg = d3.select('#content')
.append('svg')
.attr('width', width + margin)
.attr('height', height + margin)
.append('g')
.attr('transform', 'translate(' + [margin/2, margin/2].join(',') + ')');
var defs = svg.append('defs');
var x = d3.scale.linear().range([0, width]);
var y = d3.scale.linear().range([height, 0]);
var r = d3.scale.linear().range([2, 18]);
var xAxis = d3.svg.axis()
.scale(x)
.orient('bottom')
.tickFormat(function(d){ return d + '%' });
var yAxis = d3.svg.axis()
.scale(y)
.orient('left')
.tickFormat(function(d){ return d + '%' });
svg.append('g')
.attr('class', 'x axis')
.attr('transform', 'translate(0,' + height + ')')
.append('text')
.text('% Votes Along Party Lines')
.attr('y', 40)
.attr('class', 'label')
.attr('text-anchor', 'center')
.attr('x', (width - margin) / 2);
svg.append('g')
.attr('class', 'y axis')
.append('text')
.text('% Absent')
.attr('transform', 'rotate(-90)')
.attr('class', 'label')
.attr('y', 20)
.attr('x', -53)
// Add gradients
var blue = defs.append('linearGradient')
.attr('id', 'D')
.attr('x1', '0%')
.attr('y1', '0%')
.attr('x2', '0%')
.attr('y2', '100%');
blue.append('stop')
.attr('class', 'blue-start')
.attr('offset', '0%');
blue.append('stop')
.attr('class', 'blue-stop')
.attr('offset', '100%');
var red = defs.append('linearGradient')
.attr('id', 'R')
.attr('x1', '0%')
.attr('y1', '0%')
.attr('x2', '0%')
.attr('y2', '100%');
red.append('stop')
.attr('class', 'red-start')
.attr('offset', '0%');
red.append('stop')
.attr('class', 'red-stop')
.attr('offset', '100%');
var green = defs.append('linearGradient')
.attr('id', 'I')
.attr('x1', '0%')
.attr('y1', '0%')
.attr('x2', '0%')
.attr('y2', '100%');
green.append('stop')
.attr('class', 'green-start')
.attr('offset', '0%');
green.append('stop')
.attr('class', 'green-stop')
.attr('offset', '100%');
// Guts
var self = this;
this.e = new Eventer;
this.init = function() {
this.e.subscribe('load', [this.getData, this.listen]);
this.e.subscribe('draw', this.draw);
this.e.subscribe('store', [this.update_scales, this.draw]);
this.e.publish('load');
};
this.listen = function() {
d3.selectAll('#party, #seniority').on( 'change', function(){
var party = d3.select('#party')[0][0].value,
seniority = d3.select('#seniority')[0][0].value;
self.e.publish( 'draw', [ self.data.filter(function(d){
return (
( d.party == party || party == 'all' ) &&
( senority_filter(d.seniority, +seniority) || seniority == 'all' )
);
}) ] )
});
};
var senority_filter = function( seniority, rule ) {
console.log( seniority, rule );
if( rule > 0 ) {
return self.scale.seniority( seniority ) >= rule;
} else {
return self.scale.seniority( seniority ) <= -rule;
}
};
this.getData = function() {
d3.json('members.json', function(error, data){
data.forEach(function(d){
d.seniority = +d.seniority;
d.missed_votes_pct = +d.missed_votes_pct;
d.votes_with_party_pct = +d.votes_with_party_pct;
});
self.data = data;
self.scale = {
seniority: d3.scale.linear().domain( d3.extent( data, function(d){ return d.seniority } ))
};
self.e.publish('store', [data]);
})
};
this.update_scales = function( data ) {
x.domain(d3.extent(data, function(d){ return d.votes_with_party_pct; }));
y.domain(d3.extent(data, function(d){ return d.missed_votes_pct; }));
r.domain(d3.extent(data, function(d){ return d.seniority; }));
};
this.draw = function( data ) {
if( !svg.selectAll('.x.axis line').size() ) {
svg.select('.x.axis')
.transition()
.call(xAxis);
svg.select('.y.axis')
.transition()
.call(yAxis);
}
var members = svg.selectAll('.member')
.data(data);
members
.enter()
.append('circle')
.attr('class', 'member')
// Initial state
.attr('r', 0)
.attr('opacity', 0)
.attr('cy', height)
members
.transition()
.delay(function(d, i){ return i * 5 })
.attr('cx', function(d){ return x(d.votes_with_party_pct) })
.attr('fill', function(d){ return ['url(#', d.party, ')'].join('') })
.attr('cy', function(d){ return y(d.missed_votes_pct) })
.attr('opacity', 1)
.attr('r', function(d){ return r(d.seniority) })
members
.exit()
.transition()
.attr('r', 0)
.attr('opacity', 0)
.remove();
d3.selectAll('.member')
.on('mouseenter', function(d){
// circle
d3.select(this)
.attr('class', 'member active');
// tolltip
d3.select('body').append('div')
.attr('class', 'tip')
.attr('style', [
'top:', (y(d.missed_votes_pct) - 20), 'px;',
'left:', x(d.votes_with_party_pct), 'px;'
].join(''))
.html([
'<p class="name">', [d.first_name, d.middle_name, d.last_name].join(' '),
'<span class="state">', d.state, '</span>',
'</p>',
'<table>',
'<tr>',
'<td>Senority</td>',
'<td class="seniority">', d.seniority, '</td>',
'</tr>',
'<tr>',
'<td>Missed votes</td>',
'<td>', d.missed_votes_pct, '<span class="percent">%</span></td>',
'</tr>',
'<tr>',
'<td>Votes with Party</td>',
'<td>', d.votes_with_party_pct, '<span class="percent">%</span></td>',
'</tr>',
'</table>',
].join(''));
})
.on('mouseleave', function(d){
d3.selectAll('.tip').remove();
d3.selectAll('.member.active')
.attr('class', 'member');
});
};
this.init.apply( this, arguments );
};
var graph = new Graph;
</script>
</body>
</html>
[
{
"id": "A000014",
"thomas_id": "2",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000014.json",
"first_name": "Neil",
"middle_name": null,
"last_name": "Abercrombie",
"party": "D",
"twitter_account": "neilabercrombie",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "HI",
"district": "1"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "89.18"
},
{
"id": "A000022",
"thomas_id": "4",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000022.json",
"first_name": "Gary",
"middle_name": "L.",
"last_name": "Ackerman",
"party": "D",
"twitter_account": "repgaryackerman",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "NY",
"district": "5"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "93.14"
},
{
"id": "A000055",
"thomas_id": "1460",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000055.json",
"first_name": "Robert",
"middle_name": "B.",
"last_name": "Aderholt",
"party": "R",
"twitter_account": "Robert_Aderholt",
"facebook_account": "RobertAderholt",
"facebook_id": "19787529402",
"url": "http://aderholt.house.gov/",
"rss_url": "http://aderholt.house.gov/common/rss//index.cfm?rss=20",
"domain": "aderholt.house.gov",
"seniority": "10",
"state": "AL",
"district": "4"
,"missed_votes_pct": "0.16",
"votes_with_party_pct": "94.55"
},
{
"id": "A000210",
"thomas_id": "21",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000210.json",
"first_name": "Robert",
"middle_name": "E.",
"last_name": "Andrews",
"party": "D",
"twitter_account": "RepAndrews",
"facebook_account": "",
"facebook_id": "",
"url": "http://andrews.house.gov/",
"rss_url": "http://andrews.house.gov/rss.xml",
"domain": "andrews.house.gov",
"seniority": "18",
"state": "NJ",
"district": "1"
,"missed_votes_pct": "8.57",
"votes_with_party_pct": "92.70"
},
{
"id": "A000357",
"thomas_id": "1461",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000357.json",
"first_name": "Thomas",
"middle_name": "H.",
"last_name": "Allen",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "ME",
"district": "1"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "94.59"
},
{
"id": "A000358",
"thomas_id": "1655",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000358.json",
"first_name": "Todd",
"middle_name": null,
"last_name": "Akin",
"party": "R",
"twitter_account": "reptoddakin",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "MO",
"district": "2"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "91.74"
},
{
"id": "A000361",
"thomas_id": "1727",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/A000361.json",
"first_name": "Rodney",
"middle_name": null,
"last_name": "Alexander",
"party": "R",
"twitter_account": "USRepAlexander",
"facebook_account": "RepRodneyAlexander",
"facebook_id": "20002702544",
"url": "",
"rss_url": "http://alexander.house.gov/common/rss/?rss=24",
"domain": "alexander.house.gov",
"seniority": "4",
"state": "LA",
"district": "5"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "96.08"
},
{
"id": "B000013",
"thomas_id": "38",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000013.json",
"first_name": "Spencer",
"middle_name": null,
"last_name": "Bachus",
"party": "R",
"twitter_account": "BachusAL06",
"facebook_account": "SpencerBachus",
"facebook_id": "6769692966",
"url": "http://bachus.house.gov/",
"rss_url": "http://bachus.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1",
"domain": "bachus.house.gov",
"seniority": "14",
"state": "AL",
"district": "6"
,"missed_votes_pct": "4.61",
"votes_with_party_pct": "94.65"
},
{
"id": "B000072",
"thomas_id": "47",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000072.json",
"first_name": "Richard",
"middle_name": "Hugh",
"last_name": "Baker",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "LA",
"district": "6"
,"missed_votes_pct": "5.77",
"votes_with_party_pct": "95.28"
},
{
"id": "B000208",
"thomas_id": "60",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000208.json",
"first_name": "Roscoe",
"middle_name": "G.",
"last_name": "Bartlett",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MD",
"district": "6"
,"missed_votes_pct": "0.49",
"votes_with_party_pct": "84.93"
},
{
"id": "B000213",
"thomas_id": "62",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000213.json",
"first_name": "Joe",
"middle_name": "L.",
"last_name": "Barton",
"party": "R",
"twitter_account": "RepJoeBarton",
"facebook_account": "RepJoeBarton",
"facebook_id": "15617630596",
"url": "http://joebarton.house.gov/",
"rss_url": "http://joebarton.house.gov/index.php?option=com_content&amp;view=category&amp;layout=blog&amp;id=27&amp;format=feed&amp;type=rss",
"domain": "joebarton.house.gov",
"seniority": "22",
"state": "TX",
"district": "6"
,"missed_votes_pct": "6.18",
"votes_with_party_pct": "92.27"
},
{
"id": "B000220",
"thomas_id": "63",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000220.json",
"first_name": "Charles",
"middle_name": "F.",
"last_name": "Bass",
"party": "R",
"twitter_account": "RepCharlesBass",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "NH",
"district": "2"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "87.21"
},
{
"id": "B000287",
"thomas_id": "70",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000287.json",
"first_name": "Xavier",
"middle_name": null,
"last_name": "Becerra",
"party": "D",
"twitter_account": "repbecerra",
"facebook_account": "XavierBecerra",
"facebook_id": "90311772229",
"url": "http://becerra.house.gov/",
"rss_url": "http://becerra.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=2",
"domain": "becerra.house.gov",
"seniority": "14",
"state": "CA",
"district": "31"
,"missed_votes_pct": "6.10",
"votes_with_party_pct": "95.44"
},
{
"id": "B000410",
"thomas_id": "82",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000410.json",
"first_name": "Howard",
"middle_name": "L.",
"last_name": "Berman",
"party": "D",
"twitter_account": "RepHowardBerman",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "CA",
"district": "28"
,"missed_votes_pct": "7.08",
"votes_with_party_pct": "94.59"
},
{
"id": "B000420",
"thomas_id": "1462",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000420.json",
"first_name": "Marion",
"middle_name": null,
"last_name": "Berry",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "AR",
"district": "1"
,"missed_votes_pct": "0.41",
"votes_with_party_pct": "83.37"
},
{
"id": "B000461",
"thomas_id": "87",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000461.json",
"first_name": "Brian",
"middle_name": "P.",
"last_name": "Bilbray",
"party": "R",
"twitter_account": "BilbrayCA50",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "CA",
"district": "50"
,"missed_votes_pct": "2.09",
"votes_with_party_pct": "89.68"
},
{
"id": "B000463",
"thomas_id": "89",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000463.json",
"first_name": "Michael",
"middle_name": null,
"last_name": "Bilirakis",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "FL",
"district": "9"
,"missed_votes_pct": "4.04",
"votes_with_party_pct": "91.85"
},
{
"id": "B000490",
"thomas_id": "91",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000490.json",
"first_name": "Sanford",
"middle_name": "D.",
"last_name": "Bishop Jr.",
"party": "D",
"twitter_account": "SanfordBishop",
"facebook_account": "sanfordbishop",
"facebook_id": "366739521606",
"url": "http://bishop.house.gov/",
"rss_url": "http://bishop.house.gov/rss.xml",
"domain": "bishop.house.gov",
"seniority": "14",
"state": "GA",
"district": "2"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "85.53"
},
{
"id": "B000574",
"thomas_id": "99",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000574.json",
"first_name": "Earl",
"middle_name": null,
"last_name": "Blumenauer",
"party": "D",
"twitter_account": "blumenauermedia",
"facebook_account": "",
"facebook_id": "",
"url": "http://blumenauer.house.gov/",
"rss_url": "http://blumenauer.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1",
"domain": "blumenauer.house.gov",
"seniority": "12",
"state": "OR",
"district": "3"
,"missed_votes_pct": "5.52",
"votes_with_party_pct": "90.67"
},
{
"id": "B000575",
"thomas_id": "1464",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000575.json",
"first_name": "Roy",
"middle_name": "",
"last_name": "Blunt",
"party": "R",
"twitter_account": "RoyBlunt",
"facebook_account": "SenatorBlunt",
"facebook_id": "142473042477322",
"url": "http://www.blunt.senate.gov",
"rss_url": "http://www.blunt.senate.gov/public/?a=RSS.Feed",
"domain": "",
"seniority": "10",
"state": "MO",
"district": "7"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "95.67"
},
{
"id": "B000586",
"thomas_id": "101",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000586.json",
"first_name": "Sherwood",
"middle_name": "L.",
"last_name": "Boehlert",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "NY",
"district": "24"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "85.74"
},
{
"id": "B000589",
"thomas_id": "102",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000589.json",
"first_name": "John",
"middle_name": "A.",
"last_name": "Boehner",
"party": "R",
"twitter_account": "SpeakerBoehner",
"facebook_account": "",
"facebook_id": "",
"url": "http://johnboehner.house.gov/",
"rss_url": "http://boehner.house.gov/News/Rss.aspx",
"domain": "johnboehner.house.gov",
"seniority": "16",
"state": "OH",
"district": "8"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "95.69"
},
{
"id": "B000617",
"thomas_id": "107",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000617.json",
"first_name": "Henry",
"middle_name": null,
"last_name": "Bonilla",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "TX",
"district": "23"
,"missed_votes_pct": "1.07",
"votes_with_party_pct": "95.17"
},
{
"id": "B000652",
"thomas_id": "1466",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000652.json",
"first_name": "Leonard",
"middle_name": "L.",
"last_name": "Boswell",
"party": "D",
"twitter_account": "LeonardBoswell",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "IA",
"district": "3"
,"missed_votes_pct": "12.11",
"votes_with_party_pct": "87.07"
},
{
"id": "B000657",
"thomas_id": "113",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000657.json",
"first_name": "Rick",
"middle_name": null,
"last_name": "Boucher",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "VA",
"district": "9"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "88.03"
},
{
"id": "B000716",
"thomas_id": "1467",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000716.json",
"first_name": "Allen",
"middle_name": null,
"last_name": "Boyd",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "FL",
"district": "2"
,"missed_votes_pct": "5.02",
"votes_with_party_pct": "83.26"
},
{
"id": "B000755",
"thomas_id": "1468",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000755.json",
"first_name": "Kevin",
"middle_name": null,
"last_name": "Brady",
"party": "R",
"twitter_account": "RepKevinBrady",
"facebook_account": "kevinbrady",
"facebook_id": "9307301412",
"url": "http://kevinbrady.house.gov/",
"rss_url": "http://kevinbrady.house.gov/common/rss/index.cfm?rss=49",
"domain": "kevinbrady.house.gov",
"seniority": "10",
"state": "TX",
"district": "8"
,"missed_votes_pct": "6.10",
"votes_with_party_pct": "93.51"
},
{
"id": "B000911",
"thomas_id": "132",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000911.json",
"first_name": "Corrine",
"middle_name": null,
"last_name": "Brown",
"party": "D",
"twitter_account": "RepCorrineBrown",
"facebook_account": "congresswomanbrown",
"facebook_id": "179120958813519",
"url": "http://corrinebrown.house.gov/",
"rss_url": "http://corrinebrown.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=1&amp;format=raw",
"domain": "corrinebrown.house.gov",
"seniority": "14",
"state": "FL",
"district": "3"
,"missed_votes_pct": "12.19",
"votes_with_party_pct": "94.84"
},
{
"id": "B000944",
"thomas_id": "136",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B000944.json",
"first_name": "Sherrod",
"middle_name": null,
"last_name": "Brown",
"party": "D",
"twitter_account": "SenSherrodBrown",
"facebook_account": "",
"facebook_id": "",
"url": "http://www.brown.senate.gov",
"rss_url": "http://www.brown.senate.gov/rss/feeds/?type=all&amp;",
"domain": "www.brown.senate.gov",
"seniority": "14",
"state": "OH",
"district": "13"
,"missed_votes_pct": "6.67",
"votes_with_party_pct": "93.73"
},
{
"id": "B001149",
"thomas_id": "154",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001149.json",
"first_name": "Dan",
"middle_name": null,
"last_name": "Burton",
"party": "R",
"twitter_account": "RepDanBurton",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "IN",
"district": "5"
,"missed_votes_pct": "6.67",
"votes_with_party_pct": "92.67"
},
{
"id": "B001203",
"thomas_id": "160",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001203.json",
"first_name": "Steve",
"middle_name": null,
"last_name": "Buyer",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "IN",
"district": "4"
,"missed_votes_pct": "7.50",
"votes_with_party_pct": "93.86"
},
{
"id": "B001227",
"thomas_id": "1469",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001227.json",
"first_name": "Robert",
"middle_name": "A.",
"last_name": "Brady",
"party": "D",
"twitter_account": "RepBrady",
"facebook_account": "RepRobertBrady",
"facebook_id": "118845109487",
"url": "http://www.brady.house.gov/",
"rss_url": "http://brady.house.gov/rss.xml",
"domain": "www.brady.house.gov",
"seniority": "10",
"state": "PA",
"district": "1"
,"missed_votes_pct": "5.77",
"votes_with_party_pct": "92.22"
},
{
"id": "B001228",
"thomas_id": "1465",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001228.json",
"first_name": "Mary",
"middle_name": null,
"last_name": "Bono Mack",
"party": "R",
"twitter_account": "Rep_BonoMack",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "CA",
"district": "45"
,"missed_votes_pct": "6.18",
"votes_with_party_pct": "91.31"
},
{
"id": "B001229",
"thomas_id": "1557",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001229.json",
"first_name": "Brian",
"middle_name": null,
"last_name": "Baird",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "WA",
"district": "3"
,"missed_votes_pct": "5.19",
"votes_with_party_pct": "90.36"
},
{
"id": "B001230",
"thomas_id": "1558",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001230.json",
"first_name": "Tammy",
"middle_name": null,
"last_name": "Baldwin",
"party": "D",
"twitter_account": "SenatorBaldwin",
"facebook_account": "TammyBaldwin",
"facebook_id": "7357041101",
"url": "http://www.baldwin.senate.gov",
"rss_url": "http://www.baldwin.senate.gov/rss/feeds/?type=all",
"domain": "baldwin.senate.gov",
"seniority": "8",
"state": "WI",
"district": "2"
,"missed_votes_pct": "0.08",
"votes_with_party_pct": "92.33"
},
{
"id": "B001231",
"thomas_id": "1576",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001231.json",
"first_name": "Shelley",
"middle_name": null,
"last_name": "Berkley",
"party": "D",
"twitter_account": "repberkley",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "NV",
"district": "1"
,"missed_votes_pct": "5.11",
"votes_with_party_pct": "92.01"
},
{
"id": "B001232",
"thomas_id": "1577",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001232.json",
"first_name": "Judy",
"middle_name": null,
"last_name": "Biggert",
"party": "R",
"twitter_account": "JudyBiggert",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "IL",
"district": "13"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "89.78"
},
{
"id": "B001234",
"thomas_id": "1614",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001234.json",
"first_name": "Joe",
"middle_name": null,
"last_name": "Baca",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "CA",
"district": "43"
,"missed_votes_pct": "4.28",
"votes_with_party_pct": "92.94"
},
{
"id": "B001235",
"thomas_id": "1669",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001235.json",
"first_name": "Henry",
"middle_name": "E.",
"last_name": "Brown Jr.",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "SC",
"district": "1"
,"missed_votes_pct": "4.70",
"votes_with_party_pct": "95.42"
},
{
"id": "B001236",
"thomas_id": "1687",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001236.json",
"first_name": "John",
"middle_name": "",
"last_name": "Boozman",
"party": "R",
"twitter_account": "JohnBoozman",
"facebook_account": "JohnBoozman",
"facebook_id": "7686715735",
"url": "http://www.boozman.senate.gov",
"rss_url": "http://www.boozman.senate.gov/public/index.cfm/rss/feed",
"domain": "",
"seniority": "6",
"state": "AR",
"district": "3"
,"missed_votes_pct": "2.97",
"votes_with_party_pct": "95.33"
},
{
"id": "B001239",
"thomas_id": "1745",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001239.json",
"first_name": "J.",
"middle_name": "Gresham",
"last_name": "Barrett",
"party": "R",
"twitter_account": "greshambarrett",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "SC",
"district": "3"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "90.03"
},
{
"id": "B001240",
"thomas_id": "1712",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001240.json",
"first_name": "Bob",
"middle_name": null,
"last_name": "Beauprez",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "CO",
"district": "7"
,"missed_votes_pct": "5.93",
"votes_with_party_pct": "92.47"
},
{
"id": "B001242",
"thomas_id": "1740",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001242.json",
"first_name": "Timothy",
"middle_name": "H.",
"last_name": "Bishop",
"party": "D",
"twitter_account": "timbishopny",
"facebook_account": "RepTimBishop",
"facebook_id": "7940339401",
"url": "http://timbishop.house.gov/",
"rss_url": "http://timbishop.house.gov/rss/latest-news.xml",
"domain": "timbishop.house.gov",
"seniority": "4",
"state": "NY",
"district": "1"
,"missed_votes_pct": "1.73",
"votes_with_party_pct": "95.22"
},
{
"id": "B001243",
"thomas_id": "1748",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001243.json",
"first_name": "Marsha",
"middle_name": null,
"last_name": "Blackburn",
"party": "R",
"twitter_account": "MarshaBlackburn",
"facebook_account": "marshablackburn",
"facebook_id": "6470828395",
"url": "http://blackburn.house.gov/",
"rss_url": "http://blackburn.house.gov/news/rss.aspx",
"domain": "blackburn.house.gov",
"seniority": "4",
"state": "TN",
"district": "7"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "90.93"
},
{
"id": "B001244",
"thomas_id": "1703",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001244.json",
"first_name": "Jo",
"middle_name": null,
"last_name": "Bonner",
"party": "R",
"twitter_account": "repjobonner",
"facebook_account": "jobonner",
"facebook_id": "49704847429",
"url": "http://bonner.house.gov/",
"rss_url": "http://bonner.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1",
"domain": "bonner.house.gov",
"seniority": "4",
"state": "AL",
"district": "1"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "95.27"
},
{
"id": "B001245",
"thomas_id": "1723",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001245.json",
"first_name": "Madeleine",
"middle_name": "Z.",
"last_name": "Bordallo",
"party": "D",
"twitter_account": "CandiceMiller",
"facebook_account": "madeleine.bordallo",
"facebook_id": "161729837225622",
"url": "http://bordallo.house.gov/",
"rss_url": "http://bordallo.house.gov/rss.xml",
"domain": "bordallo.house.gov",
"seniority": "4",
"state": "GU",
"district": "79"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "0.00"
},
{
"id": "B001246",
"thomas_id": "1736",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001246.json",
"first_name": "Jeb",
"middle_name": "E.",
"last_name": "Bradley",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "NH",
"district": "1"
,"missed_votes_pct": "0.16",
"votes_with_party_pct": "86.96"
},
{
"id": "B001247",
"thomas_id": "1713",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001247.json",
"first_name": "Ginny",
"middle_name": null,
"last_name": "Brown-Waite",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "FL",
"district": "5"
,"missed_votes_pct": "6.92",
"votes_with_party_pct": "89.20"
},
{
"id": "B001248",
"thomas_id": "1751",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001248.json",
"first_name": "Michael",
"middle_name": "C.",
"last_name": "Burgess",
"party": "R",
"twitter_account": "michaelcburgess",
"facebook_account": "michaelcburgess",
"facebook_id": "6916472567",
"url": "http://burgess.house.gov/",
"rss_url": "http://burgess.house.gov/news/rss.aspx",
"domain": "burgess.house.gov",
"seniority": "4",
"state": "TX",
"district": "26"
,"missed_votes_pct": "1.07",
"votes_with_party_pct": "93.09"
},
{
"id": "B001250",
"thomas_id": "1753",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001250.json",
"first_name": "Rob",
"middle_name": null,
"last_name": "Bishop",
"party": "R",
"twitter_account": "RepRobBishop",
"facebook_account": "RepRobBishop",
"facebook_id": "",
"url": "http://robbishop.house.gov/",
"rss_url": "http://robbishop.house.gov/news/rss.aspx",
"domain": "robbishop.house.gov",
"seniority": "4",
"state": "UT",
"district": "1"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "93.30"
},
{
"id": "B001251",
"thomas_id": "1761",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001251.json",
"first_name": "G.",
"middle_name": "K.",
"last_name": "Butterfield",
"party": "D",
"twitter_account": "gkbutterfield",
"facebook_account": "congressmangkbutterfield",
"facebook_id": "274687979233940",
"url": "http://butterfield.house.gov/",
"rss_url": "http://butterfield.house.gov/rss/press-releases.xml",
"domain": "butterfield.house.gov",
"seniority": "4",
"state": "NC",
"district": "1"
,"missed_votes_pct": "2.14",
"votes_with_party_pct": "93.69"
},
{
"id": "B001252",
"thomas_id": "1780",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001252.json",
"first_name": "John",
"middle_name": null,
"last_name": "Barrow",
"party": "D",
"twitter_account": "repjohnbarrow",
"facebook_account": "CongressmanJohnBarrow",
"facebook_id": "285483767395",
"url": "http://barrow.house.gov/",
"rss_url": "http://barrow.house.gov/rss.xml",
"domain": "barrow.house.gov",
"seniority": "2",
"state": "GA",
"district": "12"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "81.35"
},
{
"id": "B001253",
"thomas_id": "1782",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001253.json",
"first_name": "Melissa",
"middle_name": null,
"last_name": "Bean",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "IL",
"district": "8"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "84.14"
},
{
"id": "B001254",
"thomas_id": "1796",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001254.json",
"first_name": "Dan",
"middle_name": null,
"last_name": "Boren",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "OK",
"district": "2"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "76.10"
},
{
"id": "B001255",
"thomas_id": "1787",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/B001255.json",
"first_name": "Charles",
"middle_name": null,
"last_name": "Boustany Jr.",
"party": "R",
"twitter_account": "RepBoustany",
"facebook_account": "RepBoustany",
"facebook_id": "197407646951718",
"url": "http://boustany.house.gov/",
"rss_url": "http://boustany.house.gov/common/rss/index.cfm?rss=82",
"domain": "boustany.house.gov",
"seniority": "2",
"state": "LA",
"district": "7"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "94.95"
},
{
"id": "C000059",
"thomas_id": "165",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000059.json",
"first_name": "Ken",
"middle_name": null,
"last_name": "Calvert",
"party": "R",
"twitter_account": "KenCalvert",
"facebook_account": "70063393423",
"facebook_id": "",
"url": "http://calvert.house.gov/",
"rss_url": "http://calvert.house.gov/news/rss.aspx",
"domain": "calvert.house.gov",
"seniority": "14",
"state": "CA",
"district": "44"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "96.27"
},
{
"id": "C000071",
"thomas_id": "166",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000071.json",
"first_name": "Dave",
"middle_name": null,
"last_name": "Camp",
"party": "R",
"twitter_account": "RepDaveCamp",
"facebook_account": "repdavecamp",
"facebook_id": "6775033524",
"url": "http://camp.house.gov/",
"rss_url": "http://camp.house.gov/News/Rss.aspx",
"domain": "camp.house.gov",
"seniority": "16",
"state": "MI",
"district": "4"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "95.56"
},
{
"id": "C000116",
"thomas_id": "1470",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000116.json",
"first_name": "Christopher",
"middle_name": "B.",
"last_name": "Cannon",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "UT",
"district": "3"
,"missed_votes_pct": "8.60",
"votes_with_party_pct": "93.03"
},
{
"id": "C000141",
"thomas_id": "174",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000141.json",
"first_name": "Benjamin",
"middle_name": "L.",
"last_name": "Cardin",
"party": "D",
"twitter_account": "SenatorCardin",
"facebook_account": "senatorbencardin",
"facebook_id": "120421834675191",
"url": "http://www.cardin.senate.gov",
"rss_url": "http://www.cardin.senate.gov/rss/feeds/?type=all",
"domain": "www.cardin.senate.gov",
"seniority": "20",
"state": "MD",
"district": "3"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "95.80"
},
{
"id": "C000191",
"thomas_id": "1473",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000191.json",
"first_name": "Julia",
"middle_name": "M.",
"last_name": "Carson",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "IN",
"district": "7"
,"missed_votes_pct": "7.99",
"votes_with_party_pct": "94.27"
},
{
"id": "C000243",
"thomas_id": "183",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000243.json",
"first_name": "Michael",
"middle_name": "N.",
"last_name": "Castle",
"party": "R",
"twitter_account": "repmikecastle",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "DE",
"district": "1"
,"missed_votes_pct": "4.12",
"votes_with_party_pct": "84.88"
},
{
"id": "C000266",
"thomas_id": "186",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000266.json",
"first_name": "Steven",
"middle_name": "J.",
"last_name": "Chabot",
"party": "R",
"twitter_account": "RepSteveChabot",
"facebook_account": "RepSteveChabot",
"facebook_id": "204705339555378",
"url": "http://chabot.house.gov/",
"rss_url": "http://chabot.house.gov/common/rss/index.cfm?rss=49",
"domain": "chabot.house.gov",
"seniority": "12",
"state": "OH",
"district": "1"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "89.07"
},
{
"id": "C000380",
"thomas_id": "1474",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000380.json",
"first_name": "Donna",
"middle_name": "M.C.",
"last_name": "Christensen",
"party": "D",
"twitter_account": "DelegateDonna",
"facebook_account": "138013351189",
"facebook_id": "138013351189",
"url": "http://donnachristensen.house.gov/",
"rss_url": "http://donnachristensen.house.gov/rss.xml",
"domain": "donnachristensen.house.gov",
"seniority": "10",
"state": "VI",
"district": "79"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "0.00"
},
{
"id": "C000537",
"thomas_id": "208",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000537.json",
"first_name": "James",
"middle_name": "E.",
"last_name": "Clyburn",
"party": "D",
"twitter_account": "clyburn",
"facebook_account": "jameseclyburn",
"facebook_id": "127744320598870",
"url": "http://clyburn.house.gov/",
"rss_url": "http://clyburn.house.gov/rss.xml",
"domain": "clyburn.house.gov",
"seniority": "14",
"state": "SC",
"district": "6"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "94.41"
},
{
"id": "C000556",
"thomas_id": "211",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000556.json",
"first_name": "Howard",
"middle_name": null,
"last_name": "Coble",
"party": "R",
"twitter_account": "HowardCoble",
"facebook_account": "HowardCoble6",
"facebook_id": "208742429162356",
"url": "http://coble.house.gov/",
"rss_url": "http://coble.house.gov/News/Rss.aspx",
"domain": "coble.house.gov",
"seniority": "22",
"state": "NC",
"district": "6"
,"missed_votes_pct": "3.21",
"votes_with_party_pct": "89.96"
},
{
"id": "C000714",
"thomas_id": "229",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000714.json",
"first_name": "John",
"middle_name": null,
"last_name": "Conyers Jr.",
"party": "D",
"twitter_account": "repjohnconyers",
"facebook_account": "CongressmanConyers",
"facebook_id": "206947066849",
"url": "http://conyers.house.gov/",
"rss_url": "http://conyers.house.gov/index.cfm/rss/feed",
"domain": "conyers.house.gov",
"seniority": "42",
"state": "MI",
"district": "14"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "89.55"
},
{
"id": "C000754",
"thomas_id": "231",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000754.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Cooper",
"party": "D",
"twitter_account": "repjimcooper",
"facebook_account": "JimCooper",
"facebook_id": "",
"url": "http://cooper.house.gov/",
"rss_url": "http://www.cooper.house.gov/index.php?option=com_content&amp;view=category&amp;layout=blog&amp;id=38&amp;format=feed&amp;type=rss",
"domain": "www.cooper.house.gov",
"seniority": "4",
"state": "TN",
"district": "5"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "83.46"
},
{
"id": "C000794",
"thomas_id": "238",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000794.json",
"first_name": "Jerry",
"middle_name": "F.",
"last_name": "Costello",
"party": "D",
"twitter_account": "jerrycostello",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "IL",
"district": "12"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "87.33"
},
{
"id": "C000830",
"thomas_id": "242",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000830.json",
"first_name": "Christopher",
"middle_name": null,
"last_name": "Cox",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "CA",
"district": "48"
,"missed_votes_pct": "12.80",
"votes_with_party_pct": "92.66"
},
{
"id": "C000868",
"thomas_id": "247",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000868.json",
"first_name": "Robert",
"middle_name": "E.",
"last_name": "Cramer",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "AL",
"district": "5"
,"missed_votes_pct": "3.38",
"votes_with_party_pct": "77.83"
},
{
"id": "C000962",
"thomas_id": "254",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000962.json",
"first_name": "Barbara",
"middle_name": "L.",
"last_name": "Cubin",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "WY",
"district": "1"
,"missed_votes_pct": "10.05",
"votes_with_party_pct": "92.03"
},
{
"id": "C000984",
"thomas_id": "256",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000984.json",
"first_name": "Elijah",
"middle_name": "E.",
"last_name": "Cummings",
"party": "D",
"twitter_account": "ElijahECummings",
"facebook_account": "elijahcummings",
"facebook_id": "291368465380",
"url": "http://cummings.house.gov/",
"rss_url": "http://cummings.house.gov/rss.xml",
"domain": "cummings.house.gov",
"seniority": "12",
"state": "MD",
"district": "7"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "95.42"
},
{
"id": "C000994",
"thomas_id": "258",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C000994.json",
"first_name": "Randy",
"middle_name": "&#x27;Duke&#x27;",
"last_name": "Cunningham",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "CA",
"district": "50"
,"missed_votes_pct": "6.91",
"votes_with_party_pct": "95.41"
},
{
"id": "C001036",
"thomas_id": "1471",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001036.json",
"first_name": "Lois",
"middle_name": null,
"last_name": "Capps",
"party": "D",
"twitter_account": "RepLoisCapps",
"facebook_account": "loiscapps",
"facebook_id": "168989481141",
"url": "http://capps.house.gov/",
"rss_url": "http://capps.house.gov/rss.xml",
"domain": "capps.house.gov",
"seniority": "10",
"state": "CA",
"district": "23"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "94.58"
},
{
"id": "C001037",
"thomas_id": "1564",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001037.json",
"first_name": "Michael",
"middle_name": "E.",
"last_name": "Capuano",
"party": "D",
"twitter_account": "",
"facebook_account": "RepMichaelCapuano",
"facebook_id": "151168844937573",
"url": "http://www.house.gov/capuano/",
"rss_url": "",
"domain": "www.house.gov/capuano/",
"seniority": "8",
"state": "MA",
"district": "8"
,"missed_votes_pct": "2.64",
"votes_with_party_pct": "89.76"
},
{
"id": "C001038",
"thomas_id": "1604",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001038.json",
"first_name": "Joseph",
"middle_name": "",
"last_name": "Crowley",
"party": "D",
"twitter_account": "repjoecrowley",
"facebook_account": "repjoecrowley",
"facebook_id": "176197712425090",
"url": "http://crowley.house.gov/",
"rss_url": "http://crowley.house.gov/rss.xml",
"domain": "crowley.house.gov",
"seniority": "8",
"state": "NY",
"district": "7"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "93.08"
},
{
"id": "C001045",
"thomas_id": "1643",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001045.json",
"first_name": "Ander",
"middle_name": null,
"last_name": "Crenshaw",
"party": "R",
"twitter_account": "AnderCrenshaw",
"facebook_account": "200388204657",
"facebook_id": "200388204657",
"url": "http://crenshaw.house.gov/",
"rss_url": "",
"domain": "crenshaw.house.gov",
"seniority": "6",
"state": "FL",
"district": "4"
,"missed_votes_pct": "0.91",
"votes_with_party_pct": "96.01"
},
{
"id": "C001046",
"thomas_id": "1674",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001046.json",
"first_name": "Eric",
"middle_name": null,
"last_name": "Cantor",
"party": "R",
"twitter_account": "gopleader",
"facebook_account": "",
"facebook_id": "",
"url": "http://cantor.house.gov/",
"rss_url": "http://cantor.house.gov/rss.xml",
"domain": "cantor.house.gov",
"seniority": "6",
"state": "VA",
"district": "7"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "94.79"
},
{
"id": "C001047",
"thomas_id": "1676",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001047.json",
"first_name": "Shelley",
"middle_name": "Moore",
"last_name": "Capito",
"party": "R",
"twitter_account": "RepShelley",
"facebook_account": "8057864757",
"facebook_id": "8057864757",
"url": "http://capito.house.gov/",
"rss_url": "http://capito.house.gov/common/rss//index.cfm?rss=85",
"domain": "capito.house.gov",
"seniority": "6",
"state": "WV",
"district": "2"
,"missed_votes_pct": "2.14",
"votes_with_party_pct": "92.68"
},
{
"id": "C001048",
"thomas_id": "1670",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001048.json",
"first_name": "John",
"middle_name": null,
"last_name": "Culberson",
"party": "R",
"twitter_account": "congculberson",
"facebook_account": "CongressmanCulberson",
"facebook_id": "1751723339",
"url": "http://culberson.house.gov/",
"rss_url": "http://culberson.house.gov/feed/rss/",
"domain": "culberson.house.gov",
"seniority": "6",
"state": "TX",
"district": "7"
,"missed_votes_pct": "5.19",
"votes_with_party_pct": "94.87"
},
{
"id": "C001049",
"thomas_id": "1654",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001049.json",
"first_name": "William",
"middle_name": "Lacy",
"last_name": "Clay",
"party": "D",
"twitter_account": "",
"facebook_account": "109135405838588",
"facebook_id": "109135405838588",
"url": "http://lacyclay.house.gov/",
"rss_url": "http://lacyclay.house.gov/rss/press-releases.xml",
"domain": "lacyclay.house.gov",
"seniority": "6",
"state": "MO",
"district": "1"
,"missed_votes_pct": "8.81",
"votes_with_party_pct": "91.87"
},
{
"id": "C001050",
"thomas_id": "1709",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001050.json",
"first_name": "Dennis",
"middle_name": null,
"last_name": "Cardoza",
"party": "D",
"twitter_account": "RepCardoza",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "CA",
"district": "18"
,"missed_votes_pct": "4.20",
"votes_with_party_pct": "86.93"
},
{
"id": "C001051",
"thomas_id": "1752",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001051.json",
"first_name": "John",
"middle_name": null,
"last_name": "Carter",
"party": "R",
"twitter_account": "JudgeCarter",
"facebook_account": "judgecarter",
"facebook_id": "1287257083",
"url": "http://carter.house.gov/",
"rss_url": "http://carter.house.gov/common/rss/?rss=40",
"domain": "carter.house.gov",
"seniority": "4",
"state": "TX",
"district": "31"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "95.15"
},
{
"id": "C001052",
"thomas_id": "1726",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001052.json",
"first_name": "Chris",
"middle_name": null,
"last_name": "Chocola",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "IN",
"district": "2"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "91.11"
},
{
"id": "C001053",
"thomas_id": "1742",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001053.json",
"first_name": "Tom",
"middle_name": "",
"last_name": "Cole",
"party": "R",
"twitter_account": "tomcoleok04",
"facebook_account": "TomColeOK04",
"facebook_id": "146497782066300",
"url": "http://cole.house.gov/",
"rss_url": "http://cole.house.gov/rss.xml",
"domain": "cole.house.gov",
"seniority": "4",
"state": "OK",
"district": "4"
,"missed_votes_pct": "2.06",
"votes_with_party_pct": "95.46"
},
{
"id": "C001055",
"thomas_id": "1693",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001055.json",
"first_name": "Ed",
"middle_name": null,
"last_name": "Case",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "HI",
"district": "2"
,"missed_votes_pct": "7.17",
"votes_with_party_pct": "86.87"
},
{
"id": "C001058",
"thomas_id": "1759",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001058.json",
"first_name": "Ben",
"middle_name": null,
"last_name": "Chandler",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "KY",
"district": "6"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "87.65"
},
{
"id": "C001059",
"thomas_id": "1774",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001059.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Costa",
"party": "D",
"twitter_account": "repjimcosta",
"facebook_account": "RepJimCosta",
"facebook_id": "",
"url": "http://costa.house.gov/",
"rss_url": "http://costa.house.gov/index.php?format=feed&amp;type=rss",
"domain": "costa.house.gov",
"seniority": "2",
"state": "CA",
"district": "20"
,"missed_votes_pct": "5.19",
"votes_with_party_pct": "86.53"
},
{
"id": "C001060",
"thomas_id": "1789",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001060.json",
"first_name": "Russ",
"middle_name": null,
"last_name": "Carnahan",
"party": "D",
"twitter_account": "RepCarnahan",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "MO",
"district": "3"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "94.36"
},
{
"id": "C001061",
"thomas_id": "1790",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001061.json",
"first_name": "Emanuel",
"middle_name": null,
"last_name": "Cleaver II",
"party": "D",
"twitter_account": "repcleaver",
"facebook_account": "emanuelcleaverii",
"facebook_id": "7954512692",
"url": "http://cleaver.house.gov/",
"rss_url": "http://cleaver.house.gov/rss.xml",
"domain": "cleaver.house.gov",
"seniority": "2",
"state": "MO",
"district": "5"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "93.77"
},
{
"id": "C001062",
"thomas_id": "1805",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001062.json",
"first_name": "K.",
"middle_name": "Michael",
"last_name": "Conaway",
"party": "R",
"twitter_account": "ConawayTX11",
"facebook_account": "mike.conaway",
"facebook_id": "203482063021985",
"url": "http://conaway.house.gov/",
"rss_url": "",
"domain": "conaway.house.gov",
"seniority": "2",
"state": "TX",
"district": "11"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "94.34"
},
{
"id": "C001063",
"thomas_id": "1807",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001063.json",
"first_name": "Henry",
"middle_name": null,
"last_name": "Cuellar",
"party": "D",
"twitter_account": "RepCuellar",
"facebook_account": "152569121550",
"facebook_id": "152569121550",
"url": "http://cuellar.house.gov/",
"rss_url": "http://cuellar.house.gov/news/rss.aspx",
"domain": "cuellar.house.gov",
"seniority": "2",
"state": "TX",
"district": "28"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "81.43"
},
{
"id": "C001064",
"thomas_id": "1816",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/C001064.json",
"first_name": "John",
"middle_name": null,
"last_name": "Campbell",
"party": "R",
"twitter_account": "RepJohnCampbell",
"facebook_account": "JohnCampbell",
"facebook_id": "60546090739",
"url": "http://www.campbell.house.gov/",
"rss_url": "http://www.campbell.house.gov/rss/press1.xml",
"domain": "www.campbell.house.gov",
"seniority": "2",
"state": "CA",
"district": "48"
,"missed_votes_pct": "2.85",
"votes_with_party_pct": "88.60"
},
{
"id": "D000096",
"thomas_id": "1477",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000096.json",
"first_name": "Danny",
"middle_name": "K.",
"last_name": "Davis",
"party": "D",
"twitter_account": "",
"facebook_account": "280757931935749",
"facebook_id": "",
"url": "http://www.davis.house.gov/",
"rss_url": "http://davis.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.davis.house.gov",
"seniority": "10",
"state": "IL",
"district": "7"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "92.86"
},
{
"id": "D000114",
"thomas_id": "1478",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000114.json",
"first_name": "James",
"middle_name": null,
"last_name": "Davis",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "FL",
"district": "11"
,"missed_votes_pct": "24.79",
"votes_with_party_pct": "92.66"
},
{
"id": "D000136",
"thomas_id": "274",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000136.json",
"first_name": "Thomas",
"middle_name": "M.",
"last_name": "Davis",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "VA",
"district": "11"
,"missed_votes_pct": "4.78",
"votes_with_party_pct": "90.31"
},
{
"id": "D000168",
"thomas_id": "277",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000168.json",
"first_name": "Nathan",
"middle_name": null,
"last_name": "Deal",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "GA",
"district": "10"
,"missed_votes_pct": "5.93",
"votes_with_party_pct": "90.54"
},
{
"id": "D000191",
"thomas_id": "279",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000191.json",
"first_name": "Peter",
"middle_name": "A.",
"last_name": "DeFazio",
"party": "D",
"twitter_account": "RepPeterDeFazio",
"facebook_account": "RepPeterDeFazio",
"facebook_id": "94324364811",
"url": "http://www.defazio.house.gov/",
"rss_url": "http://www.defazio.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=1&amp;format=raw",
"domain": "www.defazio.house.gov",
"seniority": "20",
"state": "OR",
"district": "4"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "89.50"
},
{
"id": "D000197",
"thomas_id": "1479",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000197.json",
"first_name": "Diana",
"middle_name": null,
"last_name": "DeGette",
"party": "D",
"twitter_account": "RepDianaDeGette",
"facebook_account": "DianaDeGette",
"facebook_id": "110757973488",
"url": "http://degette.house.gov/",
"rss_url": "http://degette.house.gov/index.php?option=com_content&amp;view=category&amp;id=76&amp;Itemid=227&amp;format=feed&amp;type=rss",
"domain": "degette.house.gov",
"seniority": "10",
"state": "CO",
"district": "1"
,"missed_votes_pct": "4.04",
"votes_with_party_pct": "93.73"
},
{
"id": "D000210",
"thomas_id": "1480",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000210.json",
"first_name": "Bill",
"middle_name": null,
"last_name": "Delahunt",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "MA",
"district": "10"
,"missed_votes_pct": "6.43",
"votes_with_party_pct": "92.61"
},
{
"id": "D000216",
"thomas_id": "281",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000216.json",
"first_name": "Rosa",
"middle_name": null,
"last_name": "DeLauro",
"party": "D",
"twitter_account": "rosadelauro",
"facebook_account": "CongresswomanRosaDeLauro",
"facebook_id": "181302611907634",
"url": "http://delauro.house.gov/",
"rss_url": "http://delauro.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=1&amp;format=raw",
"domain": "delauro.house.gov",
"seniority": "16",
"state": "CT",
"district": "3"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "95.66"
},
{
"id": "D000217",
"thomas_id": "282",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000217.json",
"first_name": "Thomas",
"middle_name": "Dale",
"last_name": "DeLay",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "22",
"state": "TX",
"district": "22"
,"missed_votes_pct": "8.25",
"votes_with_party_pct": "94.91"
},
{
"id": "D000299",
"thomas_id": "294",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000299.json",
"first_name": "Lincoln",
"middle_name": null,
"last_name": "Diaz-Balart",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "FL",
"district": "21"
,"missed_votes_pct": "7.17",
"votes_with_party_pct": "92.64"
},
{
"id": "D000327",
"thomas_id": "297",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000327.json",
"first_name": "Norman",
"middle_name": "D.",
"last_name": "Dicks",
"party": "D",
"twitter_account": "RepNormDicks",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "30",
"state": "WA",
"district": "6"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "92.39"
},
{
"id": "D000355",
"thomas_id": "299",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000355.json",
"first_name": "John",
"middle_name": "D.",
"last_name": "Dingell",
"party": "D",
"twitter_account": "john_dingell",
"facebook_account": "johndingell",
"facebook_id": "87490183861",
"url": "http://dingell.house.gov/",
"rss_url": "http://dingell.house.gov/rss.xml",
"domain": "dingell.house.gov",
"seniority": "52",
"state": "MI",
"district": "15"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "90.82"
},
{
"id": "D000399",
"thomas_id": "303",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000399.json",
"first_name": "Lloyd",
"middle_name": null,
"last_name": "Doggett",
"party": "D",
"twitter_account": "RepLloydDoggett",
"facebook_account": "lloyddoggett",
"facebook_id": "154050553704",
"url": "http://doggett.house.gov/",
"rss_url": "http://doggett.house.gov/index.php/component/ninjarsssyndicator/?feed_id=1&amp;format=raw",
"domain": "doggett.house.gov",
"seniority": "12",
"state": "TX",
"district": "25"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "93.75"
},
{
"id": "D000429",
"thomas_id": "307",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000429.json",
"first_name": "John",
"middle_name": "T.",
"last_name": "Doolittle",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "CA",
"district": "4"
,"missed_votes_pct": "4.78",
"votes_with_party_pct": "95.33"
},
{
"id": "D000482",
"thomas_id": "316",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000482.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Doyle",
"party": "D",
"twitter_account": "USRepMikeDoyle",
"facebook_account": "usrepmikedoyle",
"facebook_id": "79663724861",
"url": "http://doyle.house.gov/",
"rss_url": "http://doyle.house.gov/rss.xml",
"domain": "doyle.house.gov",
"seniority": "12",
"state": "PA",
"district": "14"
,"missed_votes_pct": "4.12",
"votes_with_party_pct": "91.84"
},
{
"id": "D000492",
"thomas_id": "317",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000492.json",
"first_name": "David",
"middle_name": null,
"last_name": "Dreier",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "CA",
"district": "26"
,"missed_votes_pct": "0.16",
"votes_with_party_pct": "94.88"
},
{
"id": "D000533",
"thomas_id": "322",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000533.json",
"first_name": "John",
"middle_name": "J.",
"last_name": "Duncan Jr.",
"party": "R",
"twitter_account": "",
"facebook_account": "CongressmanDuncan",
"facebook_id": "102385999834718",
"url": "http://duncan.house.gov/",
"rss_url": "http://duncan.house.gov/rss.xml",
"domain": "duncan.house.gov",
"seniority": "20",
"state": "TN",
"district": "2"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "84.87"
},
{
"id": "D000597",
"thomas_id": "1672",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000597.json",
"first_name": "Jo Ann",
"middle_name": "S.",
"last_name": "Davis",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "VA",
"district": "1"
,"missed_votes_pct": "10.05",
"votes_with_party_pct": "89.10"
},
{
"id": "D000598",
"thomas_id": "1641",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000598.json",
"first_name": "Susan",
"middle_name": "A.",
"last_name": "Davis",
"party": "D",
"twitter_account": "",
"facebook_account": "RepSusanDavis",
"facebook_id": "103767526332478",
"url": "http://www.house.gov/susandavis/",
"rss_url": "",
"domain": "house.gov/susandavis",
"seniority": "6",
"state": "CA",
"district": "53"
,"missed_votes_pct": "2.97",
"votes_with_party_pct": "94.65"
},
{
"id": "D000599",
"thomas_id": "1747",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000599.json",
"first_name": "Lincoln",
"middle_name": null,
"last_name": "Davis",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "TN",
"district": "4"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "80.29"
},
{
"id": "D000600",
"thomas_id": "1717",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000600.json",
"first_name": "Mario",
"middle_name": null,
"last_name": "Diaz-Balart",
"party": "R",
"twitter_account": "MarioDB",
"facebook_account": "mdiazbalart",
"facebook_id": "119538428117878",
"url": "http://mariodiazbalart.house.gov/",
"rss_url": "http://mariodiazbalart.house.gov/rss.xml",
"domain": "mariodiazbalart.house.gov",
"seniority": "4",
"state": "FL",
"district": "25"
,"missed_votes_pct": "10.13",
"votes_with_party_pct": "92.30"
},
{
"id": "D000602",
"thomas_id": "1705",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000602.json",
"first_name": "Artur",
"middle_name": null,
"last_name": "Davis",
"party": "D",
"twitter_account": "ArturDavis",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "AL",
"district": "7"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "89.08"
},
{
"id": "D000603",
"thomas_id": "1784",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000603.json",
"first_name": "Geoff",
"middle_name": null,
"last_name": "Davis",
"party": "R",
"twitter_account": "RepGeoffDavis",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "KY",
"district": "4"
,"missed_votes_pct": "1.73",
"votes_with_party_pct": "92.88"
},
{
"id": "D000604",
"thomas_id": "1799",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000604.json",
"first_name": "Charlie",
"middle_name": null,
"last_name": "Dent",
"party": "R",
"twitter_account": "",
"facebook_account": "CongressmanDent",
"facebook_id": "69862092533",
"url": "http://dent.house.gov/",
"rss_url": "http://dent.house.gov/?a=RSS.Feed",
"domain": "dent.house.gov",
"seniority": "2",
"state": "PA",
"district": "15"
,"missed_votes_pct": "0.08",
"votes_with_party_pct": "90.27"
},
{
"id": "D000605",
"thomas_id": "1808",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/D000605.json",
"first_name": "Thelma",
"middle_name": "D.",
"last_name": "Drake",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "VA",
"district": "2"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "95.93"
},
{
"id": "E000063",
"thomas_id": "335",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000063.json",
"first_name": "Chet",
"middle_name": null,
"last_name": "Edwards",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "TX",
"district": "17"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "83.14"
},
{
"id": "E000092",
"thomas_id": "339",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000092.json",
"first_name": "Vernon",
"middle_name": "J.",
"last_name": "Ehlers",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MI",
"district": "3"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "85.87"
},
{
"id": "E000172",
"thomas_id": "1481",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000172.json",
"first_name": "Jo Ann",
"middle_name": null,
"last_name": "Emerson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "MO",
"district": "8"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "92.31"
},
{
"id": "E000179",
"thomas_id": "344",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000179.json",
"first_name": "Eliot",
"middle_name": "L.",
"last_name": "Engel",
"party": "D",
"twitter_account": "RepEliotEngel",
"facebook_account": "RepEliotLEngel",
"facebook_id": "103355984852",
"url": "http://engel.house.gov/",
"rss_url": "http://engel.house.gov/rss/latest-news1.xml",
"domain": "engel.house.gov",
"seniority": "18",
"state": "NY",
"district": "17"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "94.33"
},
{
"id": "E000187",
"thomas_id": "347",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000187.json",
"first_name": "Phil",
"middle_name": null,
"last_name": "English",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "PA",
"district": "3"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "92.33"
},
{
"id": "E000215",
"thomas_id": "355",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000215.json",
"first_name": "Anna",
"middle_name": "G.",
"last_name": "Eshoo",
"party": "D",
"twitter_account": "RepAnnaEshoo",
"facebook_account": "RepAnnaEshoo",
"facebook_id": "174979964227",
"url": "http://eshoo.house.gov/",
"rss_url": "http://eshoo.house.gov/index.php?format=feed&amp;type=rss",
"domain": "eshoo.house.gov",
"seniority": "14",
"state": "CA",
"district": "14"
,"missed_votes_pct": "4.28",
"votes_with_party_pct": "94.41"
},
{
"id": "E000226",
"thomas_id": "1482",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000226.json",
"first_name": "Bob",
"middle_name": null,
"last_name": "Etheridge",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "NC",
"district": "2"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "90.64"
},
{
"id": "E000250",
"thomas_id": "361",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000250.json",
"first_name": "Lane",
"middle_name": "A.",
"last_name": "Evans",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "IL",
"district": "17"
,"missed_votes_pct": "43.25",
"votes_with_party_pct": "94.48"
},
{
"id": "E000268",
"thomas_id": "364",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000268.json",
"first_name": "Terry",
"middle_name": null,
"last_name": "Everett",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "AL",
"district": "2"
,"missed_votes_pct": "4.04",
"votes_with_party_pct": "93.56"
},
{
"id": "E000287",
"thomas_id": "1725",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/E000287.json",
"first_name": "Rahm",
"middle_name": null,
"last_name": "Emanuel",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "IL",
"district": "5"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "93.27"
},
{
"id": "F000010",
"thomas_id": "367",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000010.json",
"first_name": "Eni",
"middle_name": "F. H.",
"last_name": "Faleomavaega",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://faleomavaega.house.gov/",
"rss_url": "http://faleomavaega.house.gov/rss.xml",
"domain": "faleomavaega.house.gov",
"seniority": "18",
"state": "AS",
"district": "79"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "0.00"
},
{
"id": "F000030",
"thomas_id": "368",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000030.json",
"first_name": "Sam",
"middle_name": null,
"last_name": "Farr",
"party": "D",
"twitter_account": "RepSamFarr",
"facebook_account": "RepSamFarr",
"facebook_id": "7018136294",
"url": "http://www.farr.house.gov/",
"rss_url": "http://www.farr.house.gov/index.php/component/ninjarsssyndicator/?feed_id=1&amp;format=raw",
"domain": "www.farr.house.gov",
"seniority": "14",
"state": "CA",
"district": "17"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "92.98"
},
{
"id": "F000043",
"thomas_id": "371",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000043.json",
"first_name": "Chaka",
"middle_name": null,
"last_name": "Fattah",
"party": "D",
"twitter_account": "chakafattah",
"facebook_account": "repfattah",
"facebook_id": "165961823475034",
"url": "http://fattah.house.gov/",
"rss_url": "http://fattah.house.gov/common/rss//index.cfm?rss=34",
"domain": "fattah.house.gov",
"seniority": "12",
"state": "PA",
"district": "2"
,"missed_votes_pct": "10.30",
"votes_with_party_pct": "94.40"
},
{
"id": "F000116",
"thomas_id": "381",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000116.json",
"first_name": "Bob",
"middle_name": null,
"last_name": "Filner",
"party": "D",
"twitter_account": "CongBobFilner",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "CA",
"district": "51"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "92.50"
},
{
"id": "F000238",
"thomas_id": "396",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000238.json",
"first_name": "Mark",
"middle_name": "Adam",
"last_name": "Foley",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "FL",
"district": "16"
,"missed_votes_pct": "4.47",
"votes_with_party_pct": "91.18"
},
{
"id": "F000262",
"thomas_id": "1483",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000262.json",
"first_name": "Harold",
"middle_name": "E.",
"last_name": "Ford Jr.",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "TN",
"district": "9"
,"missed_votes_pct": "17.55",
"votes_with_party_pct": "86.91"
},
{
"id": "F000339",
"thomas_id": "407",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000339.json",
"first_name": "Barney",
"middle_name": null,
"last_name": "Frank",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "MA",
"district": "4"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "90.05"
},
{
"id": "F000372",
"thomas_id": "414",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000372.json",
"first_name": "Rodney",
"middle_name": null,
"last_name": "Frelinghuysen",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://frelinghuysen.house.gov/",
"rss_url": "http://frelinghuysen.house.gov/rss/top-news.xml",
"domain": "frelinghuysen.house.gov",
"seniority": "12",
"state": "NJ",
"district": "11"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "91.49"
},
{
"id": "F000440",
"thomas_id": "1484",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000440.json",
"first_name": "Vito",
"middle_name": "J.",
"last_name": "Fossella",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "NY",
"district": "13"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "88.52"
},
{
"id": "F000443",
"thomas_id": "1659",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000443.json",
"first_name": "Michael",
"middle_name": null,
"last_name": "Ferguson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "NJ",
"district": "7"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "88.89"
},
{
"id": "F000444",
"thomas_id": "1633",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000444.json",
"first_name": "Jeff",
"middle_name": null,
"last_name": "Flake",
"party": "R",
"twitter_account": "jeffflake",
"facebook_account": "senatorjeffflake",
"facebook_id": "",
"url": "http://www.flake.senate.gov",
"rss_url": "http://www.flake.senate.gov/public/?a=rss.feed",
"domain": "flake.senate.gov",
"seniority": "6",
"state": "AZ",
"district": "6"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "78.08"
},
{
"id": "F000445",
"thomas_id": "1683",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000445.json",
"first_name": "J.",
"middle_name": "Randy",
"last_name": "Forbes",
"party": "R",
"twitter_account": "Randy_Forbes",
"facebook_account": "randyforbes",
"facebook_id": "356330225020",
"url": "http://forbes.house.gov/",
"rss_url": "http://forbes.house.gov/news/rss.aspx",
"domain": "www.house.gov",
"seniority": "6",
"state": "VA",
"district": "4"
,"missed_votes_pct": "2.06",
"votes_with_party_pct": "93.69"
},
{
"id": "F000447",
"thomas_id": "1716",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000447.json",
"first_name": "Tom",
"middle_name": "C.",
"last_name": "Feeney",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "FL",
"district": "24"
,"missed_votes_pct": "5.68",
"votes_with_party_pct": "89.43"
},
{
"id": "F000448",
"thomas_id": "1707",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000448.json",
"first_name": "Trent",
"middle_name": null,
"last_name": "Franks",
"party": "R",
"twitter_account": "RepTrentFranks",
"facebook_account": "TrentFranks",
"facebook_id": "209486545087",
"url": "http://franks.house.gov/",
"rss_url": "http://franks.house.gov/rss.xml",
"domain": "franks.house.gov",
"seniority": "4",
"state": "AZ",
"district": "2"
,"missed_votes_pct": "2.14",
"votes_with_party_pct": "87.63"
},
{
"id": "F000449",
"thomas_id": "1793",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000449.json",
"first_name": "Jeff",
"middle_name": null,
"last_name": "Fortenberry",
"party": "R",
"twitter_account": "JeffFortenberry",
"facebook_account": "jefffortenberry",
"facebook_id": "48426842354",
"url": "http://fortenberry.house.gov/",
"rss_url": "http://fortenberry.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=1&amp;format=raw",
"domain": "fortenberry.house.gov",
"seniority": "2",
"state": "NE",
"district": "1"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "93.90"
},
{
"id": "F000450",
"thomas_id": "1791",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000450.json",
"first_name": "Virginia",
"middle_name": null,
"last_name": "Foxx",
"party": "R",
"twitter_account": "virginiafoxx",
"facebook_account": "RepVirginiaFoxx",
"facebook_id": "",
"url": "http://foxx.house.gov/",
"rss_url": "http://foxx.house.gov/news/rss.aspx",
"domain": "foxx.house.gov",
"seniority": "2",
"state": "NC",
"district": "5"
,"missed_votes_pct": "0.49",
"votes_with_party_pct": "91.39"
},
{
"id": "F000451",
"thomas_id": "1797",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000451.json",
"first_name": "Michael",
"middle_name": "G.",
"last_name": "Fitzpatrick",
"party": "R",
"twitter_account": "RepFitzpatrick",
"facebook_account": "RepFitzpatrick",
"facebook_id": "132077153521454",
"url": "http://fitzpatrick.house.gov/",
"rss_url": "http://fitzpatrick.house.gov/rss.xml",
"domain": "fitzpatrick.house.gov",
"seniority": "2",
"state": "PA",
"district": "8"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "82.48"
},
{
"id": "F000452",
"thomas_id": "1800",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/F000452.json",
"first_name": "Luis",
"middle_name": "G.",
"last_name": "Fortuno",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "PR",
"district": "80"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "0.00"
},
{
"id": "G000021",
"thomas_id": "425",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000021.json",
"first_name": "Elton",
"middle_name": null,
"last_name": "Gallegly",
"party": "R",
"twitter_account": "eltongallegly24",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "CA",
"district": "24"
,"missed_votes_pct": "8.90",
"votes_with_party_pct": "96.47"
},
{
"id": "G000152",
"thomas_id": "1485",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000152.json",
"first_name": "James",
"middle_name": "A.",
"last_name": "Gibbons",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "NV",
"district": "2"
,"missed_votes_pct": "9.47",
"votes_with_party_pct": "87.90"
},
{
"id": "G000180",
"thomas_id": "438",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000180.json",
"first_name": "Wayne",
"middle_name": "T.",
"last_name": "Gilchrest",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "MD",
"district": "1"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "86.03"
},
{
"id": "G000210",
"thomas_id": "439",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000210.json",
"first_name": "Paul",
"middle_name": "E.",
"last_name": "Gillmor",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "OH",
"district": "5"
,"missed_votes_pct": "6.43",
"votes_with_party_pct": "94.10"
},
{
"id": "G000280",
"thomas_id": "1486",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000280.json",
"first_name": "Virgil",
"middle_name": "H.",
"last_name": "Goode",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "VA",
"district": "5"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "90.89"
},
{
"id": "G000289",
"thomas_id": "446",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000289.json",
"first_name": "Robert",
"middle_name": "W.",
"last_name": "Goodlatte",
"party": "R",
"twitter_account": "RepGoodlatte",
"facebook_account": "BobGoodlatte",
"facebook_id": "6459789414",
"url": "http://goodlatte.house.gov/",
"rss_url": "http://goodlatte.house.gov/press_releases.rss",
"domain": "goodlatte.house.gov",
"seniority": "14",
"state": "VA",
"district": "6"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "95.06"
},
{
"id": "G000309",
"thomas_id": "448",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000309.json",
"first_name": "Bart",
"middle_name": null,
"last_name": "Gordon",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "22",
"state": "TN",
"district": "6"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "84.45"
},
{
"id": "G000377",
"thomas_id": "1487",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000377.json",
"first_name": "Kay",
"middle_name": null,
"last_name": "Granger",
"party": "R",
"twitter_account": "RepKayGranger",
"facebook_account": "RepKayGranger",
"facebook_id": "49640749719",
"url": "http://kaygranger.house.gov/",
"rss_url": "http://kaygranger.house.gov/rss.xml",
"domain": "kaygranger.house.gov",
"seniority": "10",
"state": "TX",
"district": "12"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "95.39"
},
{
"id": "G000410",
"thomas_id": "462",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000410.json",
"first_name": "Gene",
"middle_name": null,
"last_name": "Green",
"party": "D",
"twitter_account": "RepGeneGreen",
"facebook_account": "RepGeneGreen",
"facebook_id": "128735131872",
"url": "http://green.house.gov/",
"rss_url": "http://green.house.gov/rss.xml",
"domain": "green.house.gov",
"seniority": "14",
"state": "TX",
"district": "29"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "87.89"
},
{
"id": "G000535",
"thomas_id": "478",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000535.json",
"first_name": "Luis",
"middle_name": "V.",
"last_name": "Gutierrez",
"party": "D",
"twitter_account": "LuisGutierrez",
"facebook_account": "RepGutierrez",
"facebook_id": "91052833204",
"url": "http://gutierrez.house.gov/",
"rss_url": "http://gutierrez.house.gov/rss.xml",
"domain": "gutierrez.house.gov",
"seniority": "14",
"state": "IL",
"district": "4"
,"missed_votes_pct": "15.63",
"votes_with_party_pct": "92.75"
},
{
"id": "G000536",
"thomas_id": "479",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000536.json",
"first_name": "Gilbert",
"middle_name": "W.",
"last_name": "Gutknecht",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "MN",
"district": "1"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "87.81"
},
{
"id": "G000544",
"thomas_id": "1555",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000544.json",
"first_name": "Charlie",
"middle_name": null,
"last_name": "Gonzalez",
"party": "D",
"twitter_account": "TX20CharlieG",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "TX",
"district": "20"
,"missed_votes_pct": "3.46",
"votes_with_party_pct": "91.72"
},
{
"id": "G000545",
"thomas_id": "1559",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000545.json",
"first_name": "Mark",
"middle_name": "A.",
"last_name": "Green",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "WI",
"district": "8"
,"missed_votes_pct": "5.68",
"votes_with_party_pct": "85.68"
},
{
"id": "G000546",
"thomas_id": "1656",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000546.json",
"first_name": "Sam",
"middle_name": null,
"last_name": "Graves",
"party": "R",
"twitter_account": "",
"facebook_account": "118514606128",
"facebook_id": "118514606128",
"url": "http://graves.house.gov/",
"rss_url": "http://graves.house.gov/common/rss/index.cfm?rss=25",
"domain": "graves.house.gov",
"seniority": "6",
"state": "MO",
"district": "6"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "93.31"
},
{
"id": "G000548",
"thomas_id": "1737",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000548.json",
"first_name": "Scott",
"middle_name": null,
"last_name": "Garrett",
"party": "R",
"twitter_account": "repgarrett",
"facebook_account": "repscottgarrett",
"facebook_id": "6756553401",
"url": "http://garrett.house.gov/",
"rss_url": "http://garrett.house.gov/rss.xml",
"domain": "garrett.house.gov",
"seniority": "4",
"state": "NJ",
"district": "5"
,"missed_votes_pct": "1.57",
"votes_with_party_pct": "87.87"
},
{
"id": "G000549",
"thomas_id": "1743",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000549.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Gerlach",
"party": "R",
"twitter_account": "JimGerlach",
"facebook_account": "RepJimGerlach",
"facebook_id": "123113211050305",
"url": "http://gerlach.house.gov/",
"rss_url": "http://gerlach.house.gov/news/rss.aspx",
"domain": "gerlach.house.gov",
"seniority": "4",
"state": "PA",
"district": "6"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "85.85"
},
{
"id": "G000550",
"thomas_id": "1720",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000550.json",
"first_name": "Phil",
"middle_name": null,
"last_name": "Gingrey",
"party": "R",
"twitter_account": "RepPhilGingrey",
"facebook_account": "RepPhilGingrey",
"facebook_id": "6934467868",
"url": "http://gingrey.house.gov/",
"rss_url": "http://gingrey.house.gov/news/rss.aspx",
"domain": "gingrey.house.gov",
"seniority": "4",
"state": "GA",
"district": "11"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "92.12"
},
{
"id": "G000551",
"thomas_id": "1708",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000551.json",
"first_name": "Raúl",
"middle_name": "M.",
"last_name": "Grijalva",
"party": "D",
"twitter_account": "repraulgrijalva",
"facebook_account": "Rep.Grijalva",
"facebook_id": "73539896233",
"url": "http://grijalva.house.gov/",
"rss_url": "http://grijalva.house.gov/common/rss/?rss=13",
"domain": "grijalva.house.gov",
"seniority": "4",
"state": "AZ",
"district": "7"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "92.06"
},
{
"id": "G000552",
"thomas_id": "1801",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000552.json",
"first_name": "Louie",
"middle_name": null,
"last_name": "Gohmert",
"party": "R",
"twitter_account": "replouiegohmert",
"facebook_account": "50375006903",
"facebook_id": "50375006903",
"url": "http://gohmert.house.gov/",
"rss_url": "http://gohmert.house.gov/news/rss.aspx",
"domain": "gohmert.house.gov",
"seniority": "2",
"state": "TX",
"district": "1"
,"missed_votes_pct": "6.67",
"votes_with_party_pct": "89.67"
},
{
"id": "G000553",
"thomas_id": "1803",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/G000553.json",
"first_name": "Al",
"middle_name": null,
"last_name": "Green",
"party": "D",
"twitter_account": "RepAlGreen",
"facebook_account": "repalgreen",
"facebook_id": "136237609724391",
"url": "http://algreen.house.gov/",
"rss_url": "http://algreen.house.gov/rss.xml",
"domain": "algreen.house.gov",
"seniority": "2",
"state": "TX",
"district": "9"
,"missed_votes_pct": "0.25",
"votes_with_party_pct": "94.14"
},
{
"id": "H000067",
"thomas_id": "484",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000067.json",
"first_name": "Ralph",
"middle_name": "M.",
"last_name": "Hall",
"party": "R",
"twitter_account": "RalphHallPress",
"facebook_account": "6311458773",
"facebook_id": "6311458773",
"url": "http://ralphhall.house.gov/",
"rss_url": "http://ralphhall.house.gov/common/rss/?rss=26",
"domain": "ralphhall.house.gov",
"seniority": "26",
"state": "TX",
"district": "4"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "93.60"
},
{
"id": "H000213",
"thomas_id": "502",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000213.json",
"first_name": "Jane",
"middle_name": null,
"last_name": "Harman",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "CA",
"district": "36"
,"missed_votes_pct": "7.58",
"votes_with_party_pct": "92.87"
},
{
"id": "H000323",
"thomas_id": "510",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000323.json",
"first_name": "J. Dennis",
"middle_name": null,
"last_name": "Hastert",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "IL",
"district": "14"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "95.80"
},
{
"id": "H000324",
"thomas_id": "511",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000324.json",
"first_name": "Alcee",
"middle_name": "L.",
"last_name": "Hastings",
"party": "D",
"twitter_account": "",
"facebook_account": "95696782238",
"facebook_id": "95696782238",
"url": "http://www.alceehastings.house.gov/",
"rss_url": "http://alceehastings.house.gov/news/rss.aspx",
"domain": "www.alceehastings.house.gov",
"seniority": "14",
"state": "FL",
"district": "23"
,"missed_votes_pct": "11.04",
"votes_with_party_pct": "90.74"
},
{
"id": "H000329",
"thomas_id": "512",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000329.json",
"first_name": "Doc",
"middle_name": null,
"last_name": "Hastings",
"party": "R",
"twitter_account": "DocHastings",
"facebook_account": "RepDocHastings",
"facebook_id": "7507129675",
"url": "http://hastings.house.gov/",
"rss_url": "http://hastings.house.gov/news/rss.aspx",
"domain": "hastings.house.gov",
"seniority": "12",
"state": "WA",
"district": "4"
,"missed_votes_pct": "4.28",
"votes_with_party_pct": "95.09"
},
{
"id": "H000413",
"thomas_id": "520",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000413.json",
"first_name": "John",
"middle_name": "D.",
"last_name": "Hayworth",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "AZ",
"district": "5"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "89.52"
},
{
"id": "H000444",
"thomas_id": "524",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000444.json",
"first_name": "Joel",
"middle_name": null,
"last_name": "Hefley",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "CO",
"district": "5"
,"missed_votes_pct": "3.71",
"votes_with_party_pct": "85.80"
},
{
"id": "H000528",
"thomas_id": "533",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000528.json",
"first_name": "Wally",
"middle_name": null,
"last_name": "Herger",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "CA",
"district": "2"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "93.98"
},
{
"id": "H000627",
"thomas_id": "541",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000627.json",
"first_name": "Maurice",
"middle_name": "D.",
"last_name": "Hinchey",
"party": "D",
"twitter_account": "mauricehinchey",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "NY",
"district": "22"
,"missed_votes_pct": "6.01",
"votes_with_party_pct": "90.10"
},
{
"id": "H000636",
"thomas_id": "1490",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000636.json",
"first_name": "Rubén",
"middle_name": null,
"last_name": "Hinojosa",
"party": "D",
"twitter_account": "USRepRHinojosa",
"facebook_account": "CongressmanRubenHinojosa",
"facebook_id": "402891225161",
"url": "http://hinojosa.house.gov/",
"rss_url": "http://hinojosa.house.gov/rss.xml",
"domain": "hinojosa.house.gov",
"seniority": "10",
"state": "TX",
"district": "15"
,"missed_votes_pct": "11.86",
"votes_with_party_pct": "88.88"
},
{
"id": "H000666",
"thomas_id": "545",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000666.json",
"first_name": "David",
"middle_name": "Lee",
"last_name": "Hobson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "OH",
"district": "7"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "94.46"
},
{
"id": "H000676",
"thomas_id": "547",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000676.json",
"first_name": "Peter",
"middle_name": null,
"last_name": "Hoekstra",
"party": "R",
"twitter_account": "petehoekstra",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MI",
"district": "2"
,"missed_votes_pct": "3.21",
"votes_with_party_pct": "92.85"
},
{
"id": "H000712",
"thomas_id": "550",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000712.json",
"first_name": "Tim",
"middle_name": null,
"last_name": "Holden",
"party": "D",
"twitter_account": "RepTimHolden",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "PA",
"district": "17"
,"missed_votes_pct": "2.97",
"votes_with_party_pct": "85.65"
},
{
"id": "H000762",
"thomas_id": "1491",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000762.json",
"first_name": "Darlene",
"middle_name": null,
"last_name": "Hooley",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "OR",
"district": "5"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "93.07"
},
{
"id": "H000807",
"thomas_id": "562",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000807.json",
"first_name": "John",
"middle_name": "Nathan",
"last_name": "Hostettler",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "IN",
"district": "8"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "86.44"
},
{
"id": "H000874",
"thomas_id": "566",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000874.json",
"first_name": "Steny",
"middle_name": "H.",
"last_name": "Hoyer",
"party": "D",
"twitter_account": "WhipHoyer",
"facebook_account": "WhipHoyer",
"facebook_id": "282861997886",
"url": "http://hoyer.house.gov/",
"rss_url": "http://hoyer.house.gov/index.php?format=feed&amp;type=rss",
"domain": "hoyer.house.gov",
"seniority": "26",
"state": "MD",
"district": "5"
,"missed_votes_pct": "1.57",
"votes_with_party_pct": "94.39"
},
{
"id": "H000948",
"thomas_id": "1492",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000948.json",
"first_name": "Kenny",
"middle_name": "C.",
"last_name": "Hulshof",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "MO",
"district": "9"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "93.50"
},
{
"id": "H000981",
"thomas_id": "575",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H000981.json",
"first_name": "Duncan",
"middle_name": "L.",
"last_name": "Hunter",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "CA",
"district": "52"
,"missed_votes_pct": "7.33",
"votes_with_party_pct": "93.24"
},
{
"id": "H001022",
"thomas_id": "580",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001022.json",
"first_name": "Henry",
"middle_name": "John",
"last_name": "Hyde",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "32",
"state": "IL",
"district": "6"
,"missed_votes_pct": "12.27",
"votes_with_party_pct": "94.65"
},
{
"id": "H001029",
"thomas_id": "1600",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001029.json",
"first_name": "Robin",
"middle_name": "C.",
"last_name": "Hayes",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "NC",
"district": "8"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "94.26"
},
{
"id": "H001032",
"thomas_id": "1580",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001032.json",
"first_name": "Rush",
"middle_name": null,
"last_name": "Holt",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://holt.house.gov/",
"rss_url": "http://holt.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1",
"domain": "holt.house.gov",
"seniority": "8",
"state": "NJ",
"district": "12"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "91.73"
},
{
"id": "H001033",
"thomas_id": "1666",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001033.json",
"first_name": "Melissa",
"middle_name": "A.",
"last_name": "Hart",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "PA",
"district": "4"
,"missed_votes_pct": "0.49",
"votes_with_party_pct": "93.29"
},
{
"id": "H001034",
"thomas_id": "1634",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001034.json",
"first_name": "Michael",
"middle_name": "M.",
"last_name": "Honda",
"party": "D",
"twitter_account": "RepMikeHonda",
"facebook_account": "RepMikeHonda",
"facebook_id": "15675385380",
"url": "http://honda.house.gov/",
"rss_url": "http://honda.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1",
"domain": "honda.house.gov",
"seniority": "6",
"state": "CA",
"district": "15"
,"missed_votes_pct": "2.23",
"votes_with_party_pct": "93.06"
},
{
"id": "H001035",
"thomas_id": "1714",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001035.json",
"first_name": "Katherine",
"middle_name": null,
"last_name": "Harris",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "FL",
"district": "13"
,"missed_votes_pct": "10.21",
"votes_with_party_pct": "90.64"
},
{
"id": "H001036",
"thomas_id": "1749",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001036.json",
"first_name": "Jeb",
"middle_name": null,
"last_name": "Hensarling",
"party": "R",
"twitter_account": "RepHensarling",
"facebook_account": "RepHensarling",
"facebook_id": "7875604788",
"url": "http://hensarling.house.gov/",
"rss_url": "http://hensarling.house.gov/atom.xml",
"domain": "hensarling.house.gov",
"seniority": "4",
"state": "TX",
"district": "5"
,"missed_votes_pct": "0.41",
"votes_with_party_pct": "88.01"
},
{
"id": "H001037",
"thomas_id": "1760",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001037.json",
"first_name": "Stephanie",
"middle_name": null,
"last_name": "Herseth Sandlin",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "SD",
"district": "1"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "85.90"
},
{
"id": "H001038",
"thomas_id": "1794",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/H001038.json",
"first_name": "Brian",
"middle_name": null,
"last_name": "Higgins",
"party": "D",
"twitter_account": "RepBrianHiggins",
"facebook_account": "RepBrianHiggins",
"facebook_id": "88144056440",
"url": "http://higgins.house.gov/",
"rss_url": "http://higgins.house.gov/rss.xml",
"domain": "higgins.house.gov",
"seniority": "2",
"state": "NY",
"district": "27"
,"missed_votes_pct": "3.46",
"votes_with_party_pct": "91.89"
},
{
"id": "I000023",
"thomas_id": "582",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/I000023.json",
"first_name": "Bob",
"middle_name": null,
"last_name": "Inglis",
"party": "R",
"twitter_account": "bobinglis",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "SC",
"district": "4"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "88.25"
},
{
"id": "I000026",
"thomas_id": "584",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/I000026.json",
"first_name": "Jay",
"middle_name": null,
"last_name": "Inslee",
"party": "D",
"twitter_account": "JayInslee",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "WA",
"district": "1"
,"missed_votes_pct": "0.91",
"votes_with_party_pct": "93.52"
},
{
"id": "I000047",
"thomas_id": "586",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/I000047.json",
"first_name": "Ernest",
"middle_name": "J.",
"last_name": "Istook",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "OK",
"district": "5"
,"missed_votes_pct": "16.80",
"votes_with_party_pct": "93.27"
},
{
"id": "I000056",
"thomas_id": "1640",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/I000056.json",
"first_name": "Darrell",
"middle_name": null,
"last_name": "Issa",
"party": "R",
"twitter_account": "DarrellIssa",
"facebook_account": "darrellissa",
"facebook_id": "19463427992",
"url": "http://issa.house.gov/",
"rss_url": "http://issa.house.gov/feed/",
"domain": "issa.house.gov",
"seniority": "6",
"state": "CA",
"district": "49"
,"missed_votes_pct": "4.53",
"votes_with_party_pct": "94.13"
},
{
"id": "I000057",
"thomas_id": "1663",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/I000057.json",
"first_name": "Steve",
"middle_name": null,
"last_name": "Israel",
"party": "D",
"twitter_account": "RepSteveIsrael",
"facebook_account": "RepSteveIsrael",
"facebook_id": "",
"url": "http://israel.house.gov/",
"rss_url": "http://israel.house.gov/index.php?option=com_bca-rss-syndicator&amp;feed_id=1&amp;Itemid=10",
"domain": "israel.house.gov",
"seniority": "6",
"state": "NY",
"district": "2"
,"missed_votes_pct": "1.81",
"votes_with_party_pct": "93.37"
},
{
"id": "J000032",
"thomas_id": "588",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000032.json",
"first_name": "Sheila",
"middle_name": null,
"last_name": "Jackson-Lee",
"party": "D",
"twitter_account": "JacksonLeeTX18",
"facebook_account": "169479190984",
"facebook_id": "169479190984",
"url": "http://jacksonlee.house.gov/",
"rss_url": "http://jacksonlee.house.gov/news/rss.aspx",
"domain": "jacksonlee.house.gov",
"seniority": "12",
"state": "TX",
"district": "18"
,"missed_votes_pct": "6.51",
"votes_with_party_pct": "91.72"
},
{
"id": "J000070",
"thomas_id": "592",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000070.json",
"first_name": "William",
"middle_name": "J.",
"last_name": "Jefferson",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "LA",
"district": "2"
,"missed_votes_pct": "7.83",
"votes_with_party_pct": "92.05"
},
{
"id": "J000082",
"thomas_id": "1494",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000082.json",
"first_name": "William",
"middle_name": "Lewis",
"last_name": "Jenkins",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "TN",
"district": "1"
,"missed_votes_pct": "7.91",
"votes_with_party_pct": "91.86"
},
{
"id": "J000126",
"thomas_id": "599",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000126.json",
"first_name": "Eddie",
"middle_name": "Bernice",
"last_name": "Johnson",
"party": "D",
"twitter_account": "RepEBJ",
"facebook_account": "CongresswomanEBJtx30",
"facebook_id": "84096022067",
"url": "http://ebjohnson.house.gov/",
"rss_url": "http://ebjohnson.house.gov/common/rss//index.cfm?rss=21",
"domain": "ebjohnson.house.gov",
"seniority": "14",
"state": "TX",
"district": "30"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "93.19"
},
{
"id": "J000163",
"thomas_id": "602",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000163.json",
"first_name": "Nancy",
"middle_name": "Lee",
"last_name": "Johnson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "CT",
"district": "5"
,"missed_votes_pct": "2.06",
"votes_with_party_pct": "85.53"
},
{
"id": "J000174",
"thomas_id": "603",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000174.json",
"first_name": "Sam",
"middle_name": null,
"last_name": "Johnson",
"party": "R",
"twitter_account": "SamsPressShop",
"facebook_account": "RepSamJohnson",
"facebook_id": "52454091867",
"url": "http://samjohnson.house.gov/",
"rss_url": "http://samjohnson.house.gov/news/rss.aspx",
"domain": "samjohnson.house.gov",
"seniority": "16",
"state": "TX",
"district": "3"
,"missed_votes_pct": "9.47",
"votes_with_party_pct": "91.45"
},
{
"id": "J000255",
"thomas_id": "612",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000255.json",
"first_name": "Walter",
"middle_name": "B.",
"last_name": "Jones",
"party": "R",
"twitter_account": "RepWalterJones",
"facebook_account": "15083070102",
"facebook_id": "15083070102",
"url": "http://jones.house.gov/",
"rss_url": "http://jones.house.gov/rss.xml",
"domain": "jones.house.gov",
"seniority": "12",
"state": "NC",
"district": "3"
,"missed_votes_pct": "6.01",
"votes_with_party_pct": "75.37"
},
{
"id": "J000283",
"thomas_id": "587",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000283.json",
"first_name": "Jesse",
"middle_name": "L.",
"last_name": "Jackson Jr.",
"party": "D",
"twitter_account": "RepJJJr",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "IL",
"district": "2"
,"missed_votes_pct": "0.08",
"votes_with_party_pct": "92.33"
},
{
"id": "J000284",
"thomas_id": "1581",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000284.json",
"first_name": "Stephanie",
"middle_name": "Tubbs",
"last_name": "Jones",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "OH",
"district": "11"
,"missed_votes_pct": "7.00",
"votes_with_party_pct": "92.47"
},
{
"id": "J000285",
"thomas_id": "1648",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000285.json",
"first_name": "Timothy",
"middle_name": "V.",
"last_name": "Johnson",
"party": "R",
"twitter_account": "RepTimJohnson",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "IL",
"district": "15"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "85.59"
},
{
"id": "J000287",
"thomas_id": "1785",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/J000287.json",
"first_name": "Bobby",
"middle_name": null,
"last_name": "Jindal",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "LA",
"district": "1"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "90.63"
},
{
"id": "K000008",
"thomas_id": "615",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000008.json",
"first_name": "Paul",
"middle_name": "E.",
"last_name": "Kanjorski",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "22",
"state": "PA",
"district": "11"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "87.00"
},
{
"id": "K000009",
"thomas_id": "616",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000009.json",
"first_name": "Marcy",
"middle_name": null,
"last_name": "Kaptur",
"party": "D",
"twitter_account": "RepMarcyKaptur",
"facebook_account": "RepresentativeMarcyKaptur",
"facebook_id": "173753129419169",
"url": "http://kaptur.house.gov/",
"rss_url": "http://kaptur.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=2&amp;format=raw",
"domain": "www.kaptur.house.gov",
"seniority": "24",
"state": "OH",
"district": "9"
,"missed_votes_pct": "3.38",
"votes_with_party_pct": "90.79"
},
{
"id": "K000078",
"thomas_id": "624",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000078.json",
"first_name": "Sue",
"middle_name": "W.",
"last_name": "Kelly",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "NY",
"district": "19"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "87.34"
},
{
"id": "K000113",
"thomas_id": "627",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000113.json",
"first_name": "Patrick",
"middle_name": "J.",
"last_name": "Kennedy",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "RI",
"district": "1"
,"missed_votes_pct": "11.61",
"votes_with_party_pct": "93.94"
},
{
"id": "K000172",
"thomas_id": "631",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000172.json",
"first_name": "Dale",
"middle_name": "E.",
"last_name": "Kildee",
"party": "D",
"twitter_account": "dalekildee",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "30",
"state": "MI",
"district": "5"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "93.74"
},
{
"id": "K000180",
"thomas_id": "1497",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000180.json",
"first_name": "Carolyn",
"middle_name": "Cheeks",
"last_name": "Kilpatrick",
"party": "D",
"twitter_account": "RepKilpatrick",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "MI",
"district": "13"
,"missed_votes_pct": "6.18",
"votes_with_party_pct": "93.24"
},
{
"id": "K000188",
"thomas_id": "1498",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000188.json",
"first_name": "Ron",
"middle_name": null,
"last_name": "Kind",
"party": "D",
"twitter_account": "repronkind",
"facebook_account": "repronkind",
"facebook_id": "89152017954",
"url": "http://kind.house.gov/",
"rss_url": "http://kind.house.gov/common/rss/?rss=52",
"domain": "kind.house.gov",
"seniority": "10",
"state": "WI",
"district": "3"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "90.92"
},
{
"id": "K000210",
"thomas_id": "635",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000210.json",
"first_name": "Peter",
"middle_name": "T.",
"last_name": "King",
"party": "R",
"twitter_account": "RepPeteKing",
"facebook_account": "",
"facebook_id": "",
"url": "http://peteking.house.gov/",
"rss_url": "http://www.house.gov/apps/list/hearing/ny02_king/RSS.xml",
"domain": "peteking.house.gov",
"seniority": "14",
"state": "NY",
"district": "3"
,"missed_votes_pct": "2.14",
"votes_with_party_pct": "92.51"
},
{
"id": "K000220",
"thomas_id": "636",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000220.json",
"first_name": "Jack",
"middle_name": null,
"last_name": "Kingston",
"party": "R",
"twitter_account": "JackKingston",
"facebook_account": "JackKingston",
"facebook_id": "6914617307",
"url": "http://kingston.house.gov/",
"rss_url": "http://kingston.house.gov/News/Rss.aspx",
"domain": "kingston.house.gov",
"seniority": "14",
"state": "GA",
"district": "1"
,"missed_votes_pct": "6.59",
"votes_with_party_pct": "93.56"
},
{
"id": "K000288",
"thomas_id": "642",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000288.json",
"first_name": "Joseph",
"middle_name": "K.",
"last_name": "Knollenberg",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MI",
"district": "9"
,"missed_votes_pct": "1.73",
"votes_with_party_pct": "94.64"
},
{
"id": "K000306",
"thomas_id": "645",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000306.json",
"first_name": "James",
"middle_name": "T.",
"last_name": "Kolbe",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "22",
"state": "AZ",
"district": "8"
,"missed_votes_pct": "5.02",
"votes_with_party_pct": "90.46"
},
{
"id": "K000336",
"thomas_id": "1499",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000336.json",
"first_name": "Dennis",
"middle_name": "J.",
"last_name": "Kucinich",
"party": "D",
"twitter_account": "RepKucinich",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "OH",
"district": "10"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "86.47"
},
{
"id": "K000358",
"thomas_id": "1652",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000358.json",
"first_name": "Mark",
"middle_name": "R.",
"last_name": "Kennedy",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "MN",
"district": "6"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "89.58"
},
{
"id": "K000360",
"thomas_id": "1647",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000360.json",
"first_name": "Mark",
"middle_name": "Steven",
"last_name": "Kirk",
"party": "R",
"twitter_account": "senatorkirk",
"facebook_account": "SenatorKirk",
"facebook_id": "116381528428230",
"url": "http://www.kirk.senate.gov",
"rss_url": "http://www.kirk.senate.gov/rss/",
"domain": "",
"seniority": "6",
"state": "IL",
"district": "10"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "86.88"
},
{
"id": "K000361",
"thomas_id": "1644",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000361.json",
"first_name": "Ric",
"middle_name": null,
"last_name": "Keller",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "FL",
"district": "8"
,"missed_votes_pct": "5.02",
"votes_with_party_pct": "92.63"
},
{
"id": "K000362",
"thomas_id": "1724",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000362.json",
"first_name": "Steve",
"middle_name": null,
"last_name": "King",
"party": "R",
"twitter_account": "stevekingia",
"facebook_account": "stevekingia",
"facebook_id": "134325379926458",
"url": "http://steveking.house.gov/",
"rss_url": "http://steveking.house.gov/index.php?format=feed&amp;type=rss",
"domain": "steveking.house.gov",
"seniority": "4",
"state": "IA",
"district": "5"
,"missed_votes_pct": "0.58",
"votes_with_party_pct": "89.64"
},
{
"id": "K000363",
"thomas_id": "1733",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000363.json",
"first_name": "John",
"middle_name": null,
"last_name": "Kline",
"party": "R",
"twitter_account": "repjohnkline",
"facebook_account": "",
"facebook_id": "",
"url": "http://kline.house.gov/",
"rss_url": "http://kline.house.gov/common/rss/?rss=47",
"domain": "kline.house.gov",
"seniority": "4",
"state": "MN",
"district": "2"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "93.90"
},
{
"id": "K000364",
"thomas_id": "1795",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/K000364.json",
"first_name": "John",
"middle_name": "R.",
"last_name": "Kuhl",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "NY",
"district": "29"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "92.95"
},
{
"id": "L000090",
"thomas_id": "663",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000090.json",
"first_name": "Tom",
"middle_name": null,
"last_name": "Lantos",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "CA",
"district": "12"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "95.89"
},
{
"id": "L000111",
"thomas_id": "666",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000111.json",
"first_name": "Tom",
"middle_name": null,
"last_name": "Latham",
"party": "R",
"twitter_account": "TomLatham",
"facebook_account": "tom.latham.733",
"facebook_id": "345331988887412",
"url": "http://latham.house.gov/",
"rss_url": "http://latham.house.gov/news/rss.aspx",
"domain": "latham.house.gov",
"seniority": "12",
"state": "IA",
"district": "4"
,"missed_votes_pct": "0.41",
"votes_with_party_pct": "94.71"
},
{
"id": "L000169",
"thomas_id": "672",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000169.json",
"first_name": "James",
"middle_name": "A.",
"last_name": "Leach",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "30",
"state": "IA",
"district": "2"
,"missed_votes_pct": "4.28",
"votes_with_party_pct": "77.88"
},
{
"id": "L000263",
"thomas_id": "683",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000263.json",
"first_name": "Sander",
"middle_name": "M.",
"last_name": "Levin",
"party": "D",
"twitter_account": "repsandylevin",
"facebook_account": "RepSandyLevin",
"facebook_id": "223726364320243",
"url": "http://levin.house.gov/",
"rss_url": "http://levin.house.gov/rss.xml",
"domain": "levin.house.gov",
"seniority": "24",
"state": "MI",
"district": "12"
,"missed_votes_pct": "0.08",
"votes_with_party_pct": "94.31"
},
{
"id": "L000274",
"thomas_id": "687",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000274.json",
"first_name": "Jerry",
"middle_name": null,
"last_name": "Lewis",
"party": "R",
"twitter_account": "RepJerryLewis",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "28",
"state": "CA",
"district": "41"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "94.69"
},
{
"id": "L000287",
"thomas_id": "688",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000287.json",
"first_name": "John",
"middle_name": "",
"last_name": "Lewis",
"party": "D",
"twitter_account": "RepJohnLewis",
"facebook_account": "RepJohnLewis",
"facebook_id": "82737208404",
"url": "http://johnlewis.house.gov/",
"rss_url": "http://johnlewis.house.gov/rss.xml",
"domain": "johnlewis.house.gov",
"seniority": "20",
"state": "GA",
"district": "5"
,"missed_votes_pct": "14.50",
"votes_with_party_pct": "91.14"
},
{
"id": "L000293",
"thomas_id": "689",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000293.json",
"first_name": "Ron",
"middle_name": null,
"last_name": "Lewis",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "KY",
"district": "2"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "93.95"
},
{
"id": "L000321",
"thomas_id": "693",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000321.json",
"first_name": "John",
"middle_name": null,
"last_name": "Linder",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "GA",
"district": "7"
,"missed_votes_pct": "4.45",
"votes_with_party_pct": "91.98"
},
{
"id": "L000397",
"thomas_id": "701",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000397.json",
"first_name": "Zoe",
"middle_name": null,
"last_name": "Lofgren",
"party": "D",
"twitter_account": "RepZoeLofgren",
"facebook_account": "zoelofgren",
"facebook_id": "221191600719",
"url": "http://lofgren.house.gov/",
"rss_url": "http://lofgren.house.gov/index.php?format=feed&amp;type=rss",
"domain": "lofgren.house.gov",
"seniority": "12",
"state": "CA",
"district": "16"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "93.36"
},
{
"id": "L000480",
"thomas_id": "709",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000480.json",
"first_name": "Nita",
"middle_name": "M.",
"last_name": "Lowey",
"party": "D",
"twitter_account": "NitaLowey",
"facebook_account": "RepLowey",
"facebook_id": "158290607551599",
"url": "http://lowey.house.gov/",
"rss_url": "http://lowey.house.gov/common/rss/?rss=18",
"domain": "lowey.house.gov",
"seniority": "18",
"state": "NY",
"district": "18"
,"missed_votes_pct": "0.49",
"votes_with_party_pct": "95.45"
},
{
"id": "L000491",
"thomas_id": "711",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000491.json",
"first_name": "Frank",
"middle_name": "D.",
"last_name": "Lucas",
"party": "R",
"twitter_account": "",
"facebook_account": "7872057395",
"facebook_id": "7872057395",
"url": "http://lucas.house.gov/",
"rss_url": "http://lucas.house.gov/rss.xml",
"domain": "lucas.house.gov",
"seniority": "14",
"state": "OK",
"district": "3"
,"missed_votes_pct": "2.06",
"votes_with_party_pct": "96.30"
},
{
"id": "L000517",
"thomas_id": "717",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000517.json",
"first_name": "Dan",
"middle_name": null,
"last_name": "Lungren",
"party": "R",
"twitter_account": "dan_lungren",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "CA",
"district": "3"
,"missed_votes_pct": "0.16",
"votes_with_party_pct": "92.57"
},
{
"id": "L000551",
"thomas_id": "1501",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000551.json",
"first_name": "Barbara",
"middle_name": null,
"last_name": "Lee",
"party": "D",
"twitter_account": "repbarbaralee",
"facebook_account": "RepBarbaraLee",
"facebook_id": "92190287786",
"url": "http://lee.house.gov/",
"rss_url": "http://lee.house.gov/rss.xml",
"domain": "lee.house.gov",
"seniority": "10",
"state": "CA",
"district": "9"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "89.21"
},
{
"id": "L000552",
"thomas_id": "659",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000552.json",
"first_name": "Ray",
"middle_name": "H.",
"last_name": "LaHood",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "IL",
"district": "18"
,"missed_votes_pct": "5.11",
"votes_with_party_pct": "91.41"
},
{
"id": "L000553",
"thomas_id": "667",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000553.json",
"first_name": "Steven",
"middle_name": "C.",
"last_name": "LaTourette",
"party": "R",
"twitter_account": "SteveLaTourette",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "OH",
"district": "14"
,"missed_votes_pct": "3.38",
"votes_with_party_pct": "90.03"
},
{
"id": "L000554",
"thomas_id": "699",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000554.json",
"first_name": "Frank",
"middle_name": "A.",
"last_name": "LoBiondo",
"party": "R",
"twitter_account": "RepLoBiondo",
"facebook_account": "FrankLoBiondo",
"facebook_id": "",
"url": "http://lobiondo.house.gov/",
"rss_url": "http://lobiondo.house.gov/rss.xml",
"domain": "lobiondo.house.gov",
"seniority": "12",
"state": "NJ",
"district": "2"
,"missed_votes_pct": "0.33",
"votes_with_party_pct": "84.88"
},
{
"id": "L000557",
"thomas_id": "1583",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000557.json",
"first_name": "John",
"middle_name": "B.",
"last_name": "Larson",
"party": "D",
"twitter_account": "repjohnlarson",
"facebook_account": "RepJohnLarson",
"facebook_id": "6352928631",
"url": "http://www.larson.house.gov/",
"rss_url": "http://www.larson.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.larson.house.gov",
"seniority": "8",
"state": "CT",
"district": "1"
,"missed_votes_pct": "9.31",
"votes_with_party_pct": "94.64"
},
{
"id": "L000559",
"thomas_id": "1668",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000559.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Langevin",
"party": "D",
"twitter_account": "jimlangevin",
"facebook_account": "CongressmanJimLangevin",
"facebook_id": "6578978441",
"url": "http://langevin.house.gov/",
"rss_url": "http://langevin.house.gov/rss.xml",
"domain": "langevin.house.gov",
"seniority": "6",
"state": "RI",
"district": "2"
,"missed_votes_pct": "0.66",
"votes_with_party_pct": "93.86"
},
{
"id": "L000560",
"thomas_id": "1675",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000560.json",
"first_name": "Rick",
"middle_name": null,
"last_name": "Larsen",
"party": "D",
"twitter_account": "RepRickLarsen",
"facebook_account": "RepRickLarsen",
"facebook_id": "135654683137079",
"url": "http://larsen.house.gov/",
"rss_url": "http://larsen.house.gov/rss.xml",
"domain": "larsen.house.gov",
"seniority": "6",
"state": "WA",
"district": "2"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "92.52"
},
{
"id": "L000562",
"thomas_id": "1686",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000562.json",
"first_name": "Stephen",
"middle_name": "F.",
"last_name": "Lynch",
"party": "D",
"twitter_account": "RepStephenLynch",
"facebook_account": "repstephenlynch",
"facebook_id": "133720816696865",
"url": "http://lynch.house.gov/",
"rss_url": "http://lynch.house.gov/rss.xml",
"domain": "lynch.house.gov",
"seniority": "6",
"state": "MA",
"district": "9"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "91.99"
},
{
"id": "L000563",
"thomas_id": "1781",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/L000563.json",
"first_name": "Daniel",
"middle_name": null,
"last_name": "Lipinski",
"party": "D",
"twitter_account": "replipinski",
"facebook_account": "repdanlipinski",
"facebook_id": "103286879730089",
"url": "http://www.lipinski.house.gov/",
"rss_url": "http://www.lipinski.house.gov/common/rss//index.cfm?rss=25",
"domain": "www.lipinski.house.gov",
"seniority": "2",
"state": "IL",
"district": "3"
,"missed_votes_pct": "0.91",
"votes_with_party_pct": "90.44"
},
{
"id": "M000087",
"thomas_id": "729",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000087.json",
"first_name": "Carolyn",
"middle_name": "B.",
"last_name": "Maloney",
"party": "D",
"twitter_account": "RepMaloney",
"facebook_account": "",
"facebook_id": "",
"url": "http://maloney.house.gov/",
"rss_url": "http://maloney.house.gov/rss.xml",
"domain": "maloney.house.gov",
"seniority": "14",
"state": "NY",
"district": "14"
,"missed_votes_pct": "2.64",
"votes_with_party_pct": "93.65"
},
{
"id": "M000133",
"thomas_id": "735",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000133.json",
"first_name": "Edward",
"middle_name": "J.",
"last_name": "Markey",
"party": "D",
"twitter_account": "markeymemo",
"facebook_account": "EdJMarkey",
"facebook_id": "6846731378",
"url": "http://www.markey.senate.gov",
"rss_url": "",
"domain": "markey.senate.gov",
"seniority": "32",
"state": "MA",
"district": "7"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "91.91"
},
{
"id": "M000249",
"thomas_id": "748",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000249.json",
"first_name": "Robert",
"middle_name": "T.",
"last_name": "Matsui",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "28",
"state": "CA",
"district": "4"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "100.00"
},
{
"id": "M000309",
"thomas_id": "1503",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000309.json",
"first_name": "Carolyn",
"middle_name": null,
"last_name": "McCarthy",
"party": "D",
"twitter_account": "RepMcCarthyNY",
"facebook_account": "",
"facebook_id": "",
"url": "http://carolynmccarthy.house.gov/",
"rss_url": "http://carolynmccarthy.house.gov/common/rss/?rss=155",
"domain": "carolynmccarthy.house.gov",
"seniority": "10",
"state": "NY",
"district": "4"
,"missed_votes_pct": "3.71",
"votes_with_party_pct": "94.10"
},
{
"id": "M000312",
"thomas_id": "1504",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000312.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "McGovern",
"party": "D",
"twitter_account": "RepMcGovern",
"facebook_account": "",
"facebook_id": "",
"url": "http://mcgovern.house.gov/",
"rss_url": "http://mcgovern.house.gov/common/rss/?rss=15",
"domain": "mcgovern.house.gov",
"seniority": "10",
"state": "MA",
"district": "3"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "93.16"
},
{
"id": "M000388",
"thomas_id": "763",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000388.json",
"first_name": "Jim",
"middle_name": "O.",
"last_name": "McCrery",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "LA",
"district": "4"
,"missed_votes_pct": "4.12",
"votes_with_party_pct": "94.85"
},
{
"id": "M000404",
"thomas_id": "766",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000404.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "McDermott",
"party": "D",
"twitter_account": "RepJimMcDermott",
"facebook_account": "CongressmanJimMcDermott",
"facebook_id": "246418928093",
"url": "http://mcdermott.house.gov/",
"rss_url": "http://mcdermott.house.gov/index.php?format=feed&amp;type=rss",
"domain": "mcdermott.house.gov",
"seniority": "18",
"state": "WA",
"district": "7"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "86.68"
},
{
"id": "M000472",
"thomas_id": "773",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000472.json",
"first_name": "John",
"middle_name": "M.",
"last_name": "McHugh",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "NY",
"district": "23"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "90.90"
},
{
"id": "M000485",
"thomas_id": "1505",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000485.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "McIntyre",
"party": "D",
"twitter_account": "repmikemcintyre",
"facebook_account": "mikemcintyre",
"facebook_id": "340903514856",
"url": "http://mcintyre.house.gov/",
"rss_url": "http://mcintyre.house.gov/index.php?format=feed&amp;type=rss",
"domain": "mcintyre.house.gov",
"seniority": "10",
"state": "NC",
"district": "7"
,"missed_votes_pct": "1.81",
"votes_with_party_pct": "83.89"
},
{
"id": "M000508",
"thomas_id": "778",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000508.json",
"first_name": "Howard",
"middle_name": "P.",
"last_name": "McKeon",
"party": "R",
"twitter_account": "BuckMcKeon",
"facebook_account": "BuckMcKeon",
"facebook_id": "8138529578",
"url": "http://mckeon.house.gov/",
"rss_url": "http://mckeon.house.gov/news/rss.aspx",
"domain": "mckeon.house.gov",
"seniority": "14",
"state": "CA",
"district": "25"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "96.21"
},
{
"id": "M000523",
"thomas_id": "780",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000523.json",
"first_name": "Cynthia",
"middle_name": null,
"last_name": "McKinney",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "GA",
"district": "4"
,"missed_votes_pct": "10.46",
"votes_with_party_pct": "87.12"
},
{
"id": "M000590",
"thomas_id": "785",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000590.json",
"first_name": "Michael",
"middle_name": "R.",
"last_name": "McNulty",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "NY",
"district": "21"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "93.21"
},
{
"id": "M000627",
"thomas_id": "788",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000627.json",
"first_name": "Martin",
"middle_name": "T.",
"last_name": "Meehan",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MA",
"district": "5"
,"missed_votes_pct": "6.75",
"votes_with_party_pct": "94.52"
},
{
"id": "M000639",
"thomas_id": "791",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000639.json",
"first_name": "Robert",
"middle_name": null,
"last_name": "Menendez",
"party": "D",
"twitter_account": "SenatorMenendez",
"facebook_account": "senatormenendez",
"facebook_id": "349744811357",
"url": "http://menendez.senate.gov",
"rss_url": "http://www.menendez.senate.gov/rss/feeds/",
"domain": "menendez.senate.gov",
"seniority": "14",
"state": "NJ",
"district": "13"
,"missed_votes_pct": "5.81",
"votes_with_party_pct": "92.56"
},
{
"id": "M000689",
"thomas_id": "800",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000689.json",
"first_name": "John",
"middle_name": "L.",
"last_name": "Mica",
"party": "R",
"twitter_account": "",
"facebook_account": "JohnMica",
"facebook_id": "",
"url": "http://mica.house.gov/",
"rss_url": "http://mica.house.gov/common/rss/index.cfm?rss=25",
"domain": "mica.house.gov",
"seniority": "14",
"state": "FL",
"district": "7"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "95.41"
},
{
"id": "M000714",
"thomas_id": "805",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000714.json",
"first_name": "Juanita",
"middle_name": null,
"last_name": "Millender-McDonald",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "CA",
"district": "37"
,"missed_votes_pct": "14.42",
"votes_with_party_pct": "95.48"
},
{
"id": "M000725",
"thomas_id": "808",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000725.json",
"first_name": "George",
"middle_name": null,
"last_name": "Miller",
"party": "D",
"twitter_account": "askgeorge",
"facebook_account": "repgeorgemiller",
"facebook_id": "75298637905",
"url": "http://georgemiller.house.gov/",
"rss_url": "http://georgemiller.house.gov/rss.xml",
"domain": "georgemiller.house.gov",
"seniority": "32",
"state": "CA",
"district": "7"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "91.50"
},
{
"id": "M000844",
"thomas_id": "824",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000844.json",
"first_name": "Alan",
"middle_name": "B.",
"last_name": "Mollohan",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "WV",
"district": "1"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "85.35"
},
{
"id": "M000933",
"thomas_id": "832",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000933.json",
"first_name": "James",
"middle_name": "P.",
"last_name": "Moran",
"party": "D",
"twitter_account": "Jim_Moran",
"facebook_account": "RepJimMoran",
"facebook_id": "100123453059",
"url": "http://moran.house.gov/",
"rss_url": "http://moran.house.gov/rss.xml",
"domain": "moran.house.gov",
"seniority": "16",
"state": "VA",
"district": "8"
,"missed_votes_pct": "5.44",
"votes_with_party_pct": "90.85"
},
{
"id": "M000934",
"thomas_id": "1507",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M000934.json",
"first_name": "Jerry",
"middle_name": null,
"last_name": "Moran",
"party": "R",
"twitter_account": "JerryMoran",
"facebook_account": "jerrymoran",
"facebook_id": "171578807105",
"url": "http://www.moran.senate.gov",
"rss_url": "",
"domain": "www.moran.senate.gov/public/",
"seniority": "10",
"state": "KS",
"district": "1"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "89.75"
},
{
"id": "M001120",
"thomas_id": "844",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001120.json",
"first_name": "John",
"middle_name": "P.",
"last_name": "Murtha",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "34",
"state": "PA",
"district": "12"
,"missed_votes_pct": "8.40",
"votes_with_party_pct": "83.63"
},
{
"id": "M001134",
"thomas_id": "849",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001134.json",
"first_name": "Sue",
"middle_name": null,
"last_name": "Myrick",
"party": "R",
"twitter_account": "SueMyrick",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "NC",
"district": "9"
,"missed_votes_pct": "4.04",
"votes_with_party_pct": "90.47"
},
{
"id": "M001137",
"thomas_id": "1506",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001137.json",
"first_name": "Gregory",
"middle_name": "W.",
"last_name": "Meeks",
"party": "D",
"twitter_account": "GregoryMeeks",
"facebook_account": "gregory.meeks",
"facebook_id": "1557025818",
"url": "http://meeks.house.gov/",
"rss_url": "http://meeks.house.gov/rss.xml",
"domain": "meeks.house.gov",
"seniority": "10",
"state": "NY",
"district": "6"
,"missed_votes_pct": "7.00",
"votes_with_party_pct": "90.88"
},
{
"id": "M001138",
"thomas_id": "733",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001138.json",
"first_name": "Donald",
"middle_name": null,
"last_name": "Manzullo",
"party": "R",
"twitter_account": "donmanzullo",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "IL",
"district": "16"
,"missed_votes_pct": "6.84",
"votes_with_party_pct": "92.22"
},
{
"id": "M001139",
"thomas_id": "1584",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001139.json",
"first_name": "Gary",
"middle_name": "G.",
"last_name": "Miller",
"party": "R",
"twitter_account": "repgarymiller",
"facebook_account": "RepGaryMiller",
"facebook_id": "105352226181045",
"url": "http://garymiller.house.gov/",
"rss_url": "http://garymiller.house.gov/news/rss.aspx",
"domain": "garymiller.house.gov",
"seniority": "8",
"state": "CA",
"district": "42"
,"missed_votes_pct": "6.10",
"votes_with_party_pct": "93.77"
},
{
"id": "M001140",
"thomas_id": "1561",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001140.json",
"first_name": "Dennis",
"middle_name": null,
"last_name": "Moore",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "KS",
"district": "3"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "90.26"
},
{
"id": "M001142",
"thomas_id": "1671",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001142.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Matheson",
"party": "D",
"twitter_account": "RepJimMatheson",
"facebook_account": "RepJimMatheson",
"facebook_id": "131888123517015",
"url": "http://matheson.house.gov/",
"rss_url": "http://matheson.house.gov/rss/news-releases.xml",
"domain": "matheson.house.gov",
"seniority": "6",
"state": "UT",
"district": "2"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "78.57"
},
{
"id": "M001143",
"thomas_id": "1653",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001143.json",
"first_name": "Betty",
"middle_name": null,
"last_name": "McCollum",
"party": "D",
"twitter_account": "BettyMcCollum04",
"facebook_account": "repbettymccollum",
"facebook_id": "153386471383393",
"url": "http://mccollum.house.gov/",
"rss_url": "http://mccollum.house.gov/rss.xml",
"domain": "mccollum.house.gov",
"seniority": "6",
"state": "MN",
"district": "4"
,"missed_votes_pct": "2.14",
"votes_with_party_pct": "93.69"
},
{
"id": "M001144",
"thomas_id": "1685",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001144.json",
"first_name": "Jeff",
"middle_name": null,
"last_name": "Miller",
"party": "R",
"twitter_account": "",
"facebook_account": "RepJeffMiller",
"facebook_id": "66367876671",
"url": "http://jeffmiller.house.gov/",
"rss_url": "http://jeffmiller.house.gov/news/rss.aspx",
"domain": "jeffmiller.house.gov",
"seniority": "6",
"state": "FL",
"district": "1"
,"missed_votes_pct": "4.37",
"votes_with_party_pct": "89.66"
},
{
"id": "M001146",
"thomas_id": "1718",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001146.json",
"first_name": "Jim",
"middle_name": null,
"last_name": "Marshall",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "GA",
"district": "3"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "79.09"
},
{
"id": "M001147",
"thomas_id": "1732",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001147.json",
"first_name": "Thaddeus",
"middle_name": null,
"last_name": "McCotter",
"party": "R",
"twitter_account": "ThadMcCotter",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "MI",
"district": "11"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "90.12"
},
{
"id": "M001148",
"thomas_id": "1715",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001148.json",
"first_name": "Kendrick",
"middle_name": "B.",
"last_name": "Meek",
"party": "D",
"twitter_account": "kendrickbmeek",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "FL",
"district": "17"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "93.16"
},
{
"id": "M001149",
"thomas_id": "1730",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001149.json",
"first_name": "Michael",
"middle_name": "H.",
"last_name": "Michaud",
"party": "D",
"twitter_account": "RepMikeMichaud",
"facebook_account": "RepMikeMichaud",
"facebook_id": "131279995382",
"url": "http://michaud.house.gov/",
"rss_url": "http://michaud.house.gov/rss.xml",
"domain": "michaud.house.gov",
"seniority": "4",
"state": "ME",
"district": "2"
,"missed_votes_pct": "0.66",
"votes_with_party_pct": "92.54"
},
{
"id": "M001150",
"thomas_id": "1731",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001150.json",
"first_name": "Candice",
"middle_name": "S.",
"last_name": "Miller",
"party": "R",
"twitter_account": "CandiceMiller",
"facebook_account": "CongresswomanCandiceMiller",
"facebook_id": "210401648605",
"url": "http://candicemiller.house.gov/",
"rss_url": "http://candicemiller.house.gov/rss.xml",
"domain": "candicemiller.house.gov",
"seniority": "4",
"state": "MI",
"district": "10"
,"missed_votes_pct": "4.20",
"votes_with_party_pct": "92.52"
},
{
"id": "M001151",
"thomas_id": "1744",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001151.json",
"first_name": "Tim",
"middle_name": null,
"last_name": "Murphy",
"party": "R",
"twitter_account": "RepTimMurphy",
"facebook_account": "reptimmurphy",
"facebook_id": "105769762798552",
"url": "http://murphy.house.gov/",
"rss_url": "http://murphy.house.gov/common/rss/?rss=44",
"domain": "murphy.house.gov",
"seniority": "4",
"state": "PA",
"district": "18"
,"missed_votes_pct": "2.97",
"votes_with_party_pct": "93.29"
},
{
"id": "M001152",
"thomas_id": "1711",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001152.json",
"first_name": "Marilyn",
"middle_name": "N.",
"last_name": "Musgrave",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "CO",
"district": "4"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "91.71"
},
{
"id": "M001154",
"thomas_id": "1735",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001154.json",
"first_name": "Brad",
"middle_name": null,
"last_name": "Miller",
"party": "D",
"twitter_account": "RepBradMiller",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "NC",
"district": "13"
,"missed_votes_pct": "0.41",
"votes_with_party_pct": "92.80"
},
{
"id": "M001155",
"thomas_id": "1776",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001155.json",
"first_name": "Connie",
"middle_name": null,
"last_name": "Mack",
"party": "R",
"twitter_account": "RepConnieMack",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "FL",
"district": "14"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "91.66"
},
{
"id": "M001156",
"thomas_id": "1792",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001156.json",
"first_name": "Patrick",
"middle_name": "T.",
"last_name": "McHenry",
"party": "R",
"twitter_account": "PatrickMcHenry",
"facebook_account": "CongressmanMcHenry",
"facebook_id": "8045519803",
"url": "http://mchenry.house.gov/",
"rss_url": "http://mchenry.house.gov/News/Rss.aspx",
"domain": "mchenry.house.gov",
"seniority": "2",
"state": "NC",
"district": "10"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "90.60"
},
{
"id": "M001157",
"thomas_id": "1804",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001157.json",
"first_name": "Michael",
"middle_name": null,
"last_name": "McCaul",
"party": "R",
"twitter_account": "McCaulPressShop",
"facebook_account": "michaeltmccaul",
"facebook_id": "6355254859",
"url": "http://mccaul.house.gov/",
"rss_url": "http://mccaul.house.gov/rss/press-releases.xml",
"domain": "mccaul.house.gov",
"seniority": "2",
"state": "TX",
"district": "10"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "94.63"
},
{
"id": "M001158",
"thomas_id": "1806",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001158.json",
"first_name": "Kenny",
"middle_name": null,
"last_name": "Marchant",
"party": "R",
"twitter_account": "RepKenMarchant",
"facebook_account": "RepKennyMarchant",
"facebook_id": "6349487899",
"url": "http://marchant.house.gov/",
"rss_url": "http://marchant.house.gov/news/rss.aspx",
"domain": "marchant.house.gov",
"seniority": "2",
"state": "TX",
"district": "24"
,"missed_votes_pct": "3.21",
"votes_with_party_pct": "93.87"
},
{
"id": "M001159",
"thomas_id": "1809",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001159.json",
"first_name": "Cathy",
"middle_name": null,
"last_name": "McMorris Rodgers",
"party": "R",
"twitter_account": "cathymcmorris",
"facebook_account": "mcmorrisrodgers",
"facebook_id": "321618789771",
"url": "http://mcmorris.house.gov/",
"rss_url": "http://mcmorris.house.gov/common/rss/?rss=96",
"domain": "mcmorris.house.gov",
"seniority": "2",
"state": "WA",
"district": "5"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "94.76"
},
{
"id": "M001160",
"thomas_id": "1811",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001160.json",
"first_name": "Gwen",
"middle_name": null,
"last_name": "Moore",
"party": "D",
"twitter_account": "RepGwenMoore",
"facebook_account": "GwenSMoore",
"facebook_id": "58864029545",
"url": "http://gwenmoore.house.gov/",
"rss_url": "http://gwenmoore.house.gov/common/rss/index.cfm?rss=49",
"domain": "gwenmoore.house.gov",
"seniority": "2",
"state": "WI",
"district": "4"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "92.61"
},
{
"id": "M001161",
"thomas_id": "1786",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001161.json",
"first_name": "Charlie",
"middle_name": null,
"last_name": "Melancon",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "LA",
"district": "3"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "80.27"
},
{
"id": "M001163",
"thomas_id": "1814",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/M001163.json",
"first_name": "Doris",
"middle_name": null,
"last_name": "Matsui",
"party": "D",
"twitter_account": "DorisMatsui",
"facebook_account": "doris.matsui",
"facebook_id": "",
"url": "http://matsui.house.gov/",
"rss_url": "http://matsui.house.gov/index.php?format=feed&amp;type=rss",
"domain": "matsui.house.gov",
"seniority": "2",
"state": "CA",
"district": "5"
,"missed_votes_pct": "1.30",
"votes_with_party_pct": "95.42"
},
{
"id": "N000002",
"thomas_id": "850",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000002.json",
"first_name": "Jerrold",
"middle_name": "",
"last_name": "Nadler",
"party": "D",
"twitter_account": "RepJerryNadler",
"facebook_account": "CongressmanNadler",
"facebook_id": "78291598977",
"url": "http://nadler.house.gov/",
"rss_url": "http://nadler.house.gov/rss.xml",
"domain": "nadler.house.gov",
"seniority": "16",
"state": "NY",
"district": "8"
,"missed_votes_pct": "3.38",
"votes_with_party_pct": "92.67"
},
{
"id": "N000015",
"thomas_id": "854",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000015.json",
"first_name": "Richard",
"middle_name": "E.",
"last_name": "Neal",
"party": "D",
"twitter_account": "RepRichardNeal",
"facebook_account": "325642654132598",
"facebook_id": "325642654132598",
"url": "http://neal.house.gov/",
"rss_url": "http://neal.house.gov/index.php?format=feed&amp;type=rss",
"domain": "neal.house.gov",
"seniority": "18",
"state": "MA",
"district": "2"
,"missed_votes_pct": "5.44",
"votes_with_party_pct": "94.43"
},
{
"id": "N000081",
"thomas_id": "862",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000081.json",
"first_name": "Robert",
"middle_name": "William",
"last_name": "Ney",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "OH",
"district": "18"
,"missed_votes_pct": "8.68",
"votes_with_party_pct": "92.25"
},
{
"id": "N000143",
"thomas_id": "1508",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000143.json",
"first_name": "Anne",
"middle_name": "Meagher",
"last_name": "Northup",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "KY",
"district": "3"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "96.17"
},
{
"id": "N000147",
"thomas_id": "868",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000147.json",
"first_name": "Eleanor",
"middle_name": "Holmes",
"last_name": "Norton",
"party": "D",
"twitter_account": "EleanorNorton",
"facebook_account": "CongresswomanNorton",
"facebook_id": "61731840657",
"url": "http://norton.house.gov/",
"rss_url": "http://www.norton.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.norton.house.gov",
"seniority": "16",
"state": "DC",
"district": "79"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "0.00"
},
{
"id": "N000159",
"thomas_id": "869",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000159.json",
"first_name": "Charles",
"middle_name": "W.",
"last_name": "Norwood",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "GA",
"district": "9"
,"missed_votes_pct": "8.26",
"votes_with_party_pct": "90.90"
},
{
"id": "N000172",
"thomas_id": "871",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000172.json",
"first_name": "James",
"middle_name": "Allen",
"last_name": "Nussle",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "IA",
"district": "1"
,"missed_votes_pct": "13.18",
"votes_with_party_pct": "94.78"
},
{
"id": "N000179",
"thomas_id": "1602",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000179.json",
"first_name": "Grace",
"middle_name": "F.",
"last_name": "Napolitano",
"party": "D",
"twitter_account": "gracenapolitano",
"facebook_account": "RepGraceNapolitano",
"facebook_id": "163108420409412",
"url": "http://napolitano.house.gov/",
"rss_url": "http://napolitano.house.gov/rss.xml",
"domain": "napolitano.house.gov",
"seniority": "8",
"state": "CA",
"district": "38"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "95.13"
},
{
"id": "N000181",
"thomas_id": "1710",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000181.json",
"first_name": "Devin",
"middle_name": null,
"last_name": "Nunes",
"party": "R",
"twitter_account": "Rep_DevinNunes",
"facebook_account": "",
"facebook_id": "",
"url": "http://nunes.house.gov/",
"rss_url": "http://nunes.house.gov/news/rss.aspx",
"domain": "nunes.house.gov",
"seniority": "4",
"state": "CA",
"district": "21"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "96.28"
},
{
"id": "N000182",
"thomas_id": "1758",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/N000182.json",
"first_name": "Randy",
"middle_name": null,
"last_name": "Neugebauer",
"party": "R",
"twitter_account": "RandyNeugebauer",
"facebook_account": "rep.randy.neugebauer",
"facebook_id": "64137294987",
"url": "http://randy.house.gov/",
"rss_url": "http://randy.house.gov/rss.xml",
"domain": "randy.house.gov",
"seniority": "4",
"state": "TX",
"district": "19"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "91.91"
},
{
"id": "O000006",
"thomas_id": "876",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000006.json",
"first_name": "James",
"middle_name": "L.",
"last_name": "Oberstar",
"party": "D",
"twitter_account": "JimOberstar",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "32",
"state": "MN",
"district": "8"
,"missed_votes_pct": "5.52",
"votes_with_party_pct": "89.10"
},
{
"id": "O000007",
"thomas_id": "877",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000007.json",
"first_name": "David",
"middle_name": "R.",
"last_name": "Obey",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "38",
"state": "WI",
"district": "7"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "91.07"
},
{
"id": "O000085",
"thomas_id": "879",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000085.json",
"first_name": "John",
"middle_name": "W.",
"last_name": "Olver",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "MA",
"district": "1"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "90.72"
},
{
"id": "O000107",
"thomas_id": "880",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000107.json",
"first_name": "Solomon",
"middle_name": "P.",
"last_name": "Ortiz",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "TX",
"district": "27"
,"missed_votes_pct": "6.43",
"votes_with_party_pct": "86.62"
},
{
"id": "O000159",
"thomas_id": "883",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000159.json",
"first_name": "Major",
"middle_name": "R.",
"last_name": "Owens",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "NY",
"district": "11"
,"missed_votes_pct": "4.20",
"votes_with_party_pct": "92.43"
},
{
"id": "O000163",
"thomas_id": "885",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000163.json",
"first_name": "Michael",
"middle_name": "G.",
"last_name": "Oxley",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "OH",
"district": "4"
,"missed_votes_pct": "12.60",
"votes_with_party_pct": "95.00"
},
{
"id": "O000165",
"thomas_id": "1658",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000165.json",
"first_name": "Thomas",
"middle_name": "William",
"last_name": "Osborne",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "NE",
"district": "3"
,"missed_votes_pct": "4.63",
"votes_with_party_pct": "94.54"
},
{
"id": "O000166",
"thomas_id": "1646",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/O000166.json",
"first_name": "C.L.",
"middle_name": null,
"last_name": "Otter",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "ID",
"district": "1"
,"missed_votes_pct": "2.72",
"votes_with_party_pct": "84.76"
},
{
"id": "P000034",
"thomas_id": "887",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000034.json",
"first_name": "Frank",
"middle_name": null,
"last_name": "Pallone",
"party": "D",
"twitter_account": "FrankPallone",
"facebook_account": "repfrankpallone",
"facebook_id": "6517277731",
"url": "http://pallone.house.gov/",
"rss_url": "http://pallone.house.gov/rss.xml",
"domain": "pallone.house.gov",
"seniority": "20",
"state": "NJ",
"district": "6"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "93.79"
},
{
"id": "P000096",
"thomas_id": "1510",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000096.json",
"first_name": "Bill",
"middle_name": null,
"last_name": "Pascrell Jr.",
"party": "D",
"twitter_account": "BillPascrell",
"facebook_account": "pascrell",
"facebook_id": "303312929155",
"url": "http://pascrell.house.gov/",
"rss_url": "http://www.house.gov/apps/list/press/nj08_pascrell/RSS.xml",
"domain": "pascrell.house.gov",
"seniority": "10",
"state": "NJ",
"district": "8"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "93.27"
},
{
"id": "P000099",
"thomas_id": "893",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000099.json",
"first_name": "Ed",
"middle_name": null,
"last_name": "Pastor",
"party": "D",
"twitter_account": "PastorForAZ",
"facebook_account": "",
"facebook_id": "",
"url": "http://www.pastor.house.gov/",
"rss_url": "http://www.pastor.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.pastor.house.gov",
"seniority": "16",
"state": "AZ",
"district": "4"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "90.21"
},
{
"id": "P000149",
"thomas_id": "902",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000149.json",
"first_name": "Donald",
"middle_name": "M.",
"last_name": "Payne",
"party": "D",
"twitter_account": "Payne10thNJ",
"facebook_account": "",
"facebook_id": "",
"url": "http://payne.house.gov/",
"rss_url": "http://payne.house.gov/rss.xml",
"domain": "payne.house.gov",
"seniority": "18",
"state": "NJ",
"district": "10"
,"missed_votes_pct": "13.92",
"votes_with_party_pct": "90.24"
},
{
"id": "P000197",
"thomas_id": "905",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000197.json",
"first_name": "Nancy",
"middle_name": null,
"last_name": "Pelosi",
"party": "D",
"twitter_account": "NancyPelosi",
"facebook_account": "NancyPelosi",
"facebook_id": "86574174383",
"url": "http://pelosi.house.gov/",
"rss_url": "http://pelosi.house.gov/atom.xml",
"domain": "pelosi.house.gov",
"seniority": "20",
"state": "CA",
"district": "8"
,"missed_votes_pct": "4.37",
"votes_with_party_pct": "95.44"
},
{
"id": "P000258",
"thomas_id": "910",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000258.json",
"first_name": "Collin",
"middle_name": "C.",
"last_name": "Peterson",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://collinpeterson.house.gov/",
"rss_url": "http://collinpeterson.house.gov/rss.xml",
"domain": "collinpeterson.house.gov",
"seniority": "16",
"state": "MN",
"district": "7"
,"missed_votes_pct": "2.06",
"votes_with_party_pct": "77.88"
},
{
"id": "P000263",
"thomas_id": "1512",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000263.json",
"first_name": "John",
"middle_name": "E.",
"last_name": "Peterson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "PA",
"district": "5"
,"missed_votes_pct": "9.06",
"votes_with_party_pct": "95.56"
},
{
"id": "P000265",
"thomas_id": "912",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000265.json",
"first_name": "Tom",
"middle_name": null,
"last_name": "Petri",
"party": "R",
"twitter_account": "",
"facebook_account": "thomaspetri",
"facebook_id": "",
"url": "http://petri.house.gov/",
"rss_url": "http://petri.house.gov/rss.xml",
"domain": "petri.house.gov",
"seniority": "28",
"state": "WI",
"district": "6"
,"missed_votes_pct": "0.66",
"votes_with_party_pct": "85.74"
},
{
"id": "P000323",
"thomas_id": "1513",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000323.json",
"first_name": "Charles",
"middle_name": "W.",
"last_name": "Pickering",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "MS",
"district": "3"
,"missed_votes_pct": "5.27",
"votes_with_party_pct": "95.04"
},
{
"id": "P000373",
"thomas_id": "1514",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000373.json",
"first_name": "Joe",
"middle_name": null,
"last_name": "Pitts",
"party": "R",
"twitter_account": "RepJoePitts",
"facebook_account": "94156528752",
"facebook_id": "94156528752",
"url": "http://pitts.house.gov/",
"rss_url": "http://pitts.house.gov/rss.xml",
"domain": "pitts.house.gov",
"seniority": "10",
"state": "PA",
"district": "16"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "90.48"
},
{
"id": "P000419",
"thomas_id": "921",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000419.json",
"first_name": "Richard",
"middle_name": "W.",
"last_name": "Pombo",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "CA",
"district": "11"
,"missed_votes_pct": "4.86",
"votes_with_party_pct": "94.72"
},
{
"id": "P000422",
"thomas_id": "922",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000422.json",
"first_name": "Earl",
"middle_name": null,
"last_name": "Pomeroy",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "ND",
"district": "1"
,"missed_votes_pct": "1.81",
"votes_with_party_pct": "88.09"
},
{
"id": "P000449",
"thomas_id": "924",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000449.json",
"first_name": "Rob",
"middle_name": "",
"last_name": "Portman",
"party": "R",
"twitter_account": "robportman",
"facebook_account": "robportman",
"facebook_id": "45243961073",
"url": "http://www.portman.senate.gov",
"rss_url": "http://www.portman.senate.gov/public/index.cfm/rss/feed",
"domain": "",
"seniority": "14",
"state": "OH",
"district": "2"
,"missed_votes_pct": "9.33",
"votes_with_party_pct": "97.06"
},
{
"id": "P000523",
"thomas_id": "930",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000523.json",
"first_name": "David",
"middle_name": "E.",
"last_name": "Price",
"party": "D",
"twitter_account": "RepDavidEPrice",
"facebook_account": "",
"facebook_id": "",
"url": "http://price.house.gov/",
"rss_url": "http://price.house.gov/index.php?format=feed&amp;type=rss",
"domain": "price.house.gov",
"seniority": "18",
"state": "NC",
"district": "4"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "94.58"
},
{
"id": "P000555",
"thomas_id": "933",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000555.json",
"first_name": "Deborah",
"middle_name": "D.",
"last_name": "Pryce",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "OH",
"district": "15"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "93.84"
},
{
"id": "P000583",
"thomas_id": "900",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000583.json",
"first_name": "Ron",
"middle_name": null,
"last_name": "Paul",
"party": "R",
"twitter_account": "RepRonPaul",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "TX",
"district": "14"
,"missed_votes_pct": "6.92",
"votes_with_party_pct": "60.27"
},
{
"id": "P000585",
"thomas_id": "1667",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000585.json",
"first_name": "Todd",
"middle_name": "R.",
"last_name": "Platts",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "PA",
"district": "19"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "85.42"
},
{
"id": "P000586",
"thomas_id": "1645",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000586.json",
"first_name": "Adam",
"middle_name": "H.",
"last_name": "Putnam",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "FL",
"district": "12"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "95.85"
},
{
"id": "P000587",
"thomas_id": "1649",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000587.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Pence",
"party": "R",
"twitter_account": "RepMikePence",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "IN",
"district": "6"
,"missed_votes_pct": "3.87",
"votes_with_party_pct": "89.20"
},
{
"id": "P000588",
"thomas_id": "1738",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000588.json",
"first_name": "Steve",
"middle_name": null,
"last_name": "Pearce",
"party": "R",
"twitter_account": "RepStevePearce",
"facebook_account": "RepStevePearce",
"facebook_id": "180280568662135",
"url": "http://pearce.house.gov/",
"rss_url": "http://pearce.house.gov/rss.xml",
"domain": "pearce.house.gov",
"seniority": "4",
"state": "NM",
"district": "2"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "94.27"
},
{
"id": "P000589",
"thomas_id": "1739",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000589.json",
"first_name": "Jon",
"middle_name": "Christopher",
"last_name": "Porter",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "NV",
"district": "3"
,"missed_votes_pct": "0.08",
"votes_with_party_pct": "90.77"
},
{
"id": "P000591",
"thomas_id": "1778",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000591.json",
"first_name": "Tom",
"middle_name": null,
"last_name": "Price",
"party": "R",
"twitter_account": "RepTomPrice",
"facebook_account": "reptomprice",
"facebook_id": "172032960420",
"url": "http://tomprice.house.gov/",
"rss_url": "http://tomprice.house.gov/rss.xml",
"domain": "tomprice.house.gov",
"seniority": "2",
"state": "GA",
"district": "6"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "90.31"
},
{
"id": "P000592",
"thomas_id": "1802",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/P000592.json",
"first_name": "Ted",
"middle_name": null,
"last_name": "Poe",
"party": "R",
"twitter_account": "JudgeTedPoe",
"facebook_account": "106631626049851",
"facebook_id": "106631626049851",
"url": "http://poe.house.gov/",
"rss_url": "http://poe.house.gov/index.php?option=com_ninjarsssyndicator&amp;feed_id=1&amp;format=raw",
"domain": "www.house.gov",
"seniority": "2",
"state": "TX",
"district": "2"
,"missed_votes_pct": "3.54",
"votes_with_party_pct": "88.64"
},
{
"id": "R000004",
"thomas_id": "939",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000004.json",
"first_name": "George",
"middle_name": "P.",
"last_name": "Radanovich",
"party": "R",
"twitter_account": "RepRadanovich",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "CA",
"district": "19"
,"missed_votes_pct": "6.01",
"votes_with_party_pct": "93.60"
},
{
"id": "R000011",
"thomas_id": "940",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000011.json",
"first_name": "Nick",
"middle_name": "J.",
"last_name": "Rahall II",
"party": "D",
"twitter_account": "",
"facebook_account": "NickRahall",
"facebook_id": "357958026910",
"url": "http://www.rahall.house.gov/",
"rss_url": "http://rahall.house.gov/rss.xml",
"domain": "www.rahall.house.gov",
"seniority": "30",
"state": "WV",
"district": "3"
,"missed_votes_pct": "1.73",
"votes_with_party_pct": "88.01"
},
{
"id": "R000033",
"thomas_id": "942",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000033.json",
"first_name": "James",
"middle_name": "M.",
"last_name": "Ramstad",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "MN",
"district": "3"
,"missed_votes_pct": "1.65",
"votes_with_party_pct": "81.74"
},
{
"id": "R000053",
"thomas_id": "944",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000053.json",
"first_name": "Charles",
"middle_name": "B.",
"last_name": "Rangel",
"party": "D",
"twitter_account": "cbrangel",
"facebook_account": "CBRangel",
"facebook_id": "7390589055",
"url": "http://rangel.house.gov/",
"rss_url": "http://rangel.house.gov/rss.xml",
"domain": "rangel.house.gov",
"seniority": "36",
"state": "NY",
"district": "15"
,"missed_votes_pct": "5.27",
"votes_with_party_pct": "94.09"
},
{
"id": "R000141",
"thomas_id": "951",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000141.json",
"first_name": "Ralph",
"middle_name": null,
"last_name": "Regula",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "34",
"state": "OH",
"district": "16"
,"missed_votes_pct": "0.33",
"votes_with_party_pct": "93.22"
},
{
"id": "R000170",
"thomas_id": "1516",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000170.json",
"first_name": "Silvestre",
"middle_name": null,
"last_name": "Reyes",
"party": "D",
"twitter_account": "silvestrereyes",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "TX",
"district": "16"
,"missed_votes_pct": "10.71",
"votes_with_party_pct": "89.11"
},
{
"id": "R000395",
"thomas_id": "977",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000395.json",
"first_name": "Harold",
"middle_name": null,
"last_name": "Rogers",
"party": "R",
"twitter_account": "RepHalRogers",
"facebook_account": "CongressmanHalRogers",
"facebook_id": "6722039085",
"url": "http://halrogers.house.gov/",
"rss_url": "http://halrogers.house.gov/news/rss.aspx",
"domain": "halrogers.house.gov",
"seniority": "26",
"state": "KY",
"district": "5"
,"missed_votes_pct": "1.07",
"votes_with_party_pct": "95.42"
},
{
"id": "R000409",
"thomas_id": "979",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000409.json",
"first_name": "Dana",
"middle_name": null,
"last_name": "Rohrabacher",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://rohrabacher.house.gov/",
"rss_url": "http://rohrabacher.house.gov/rss.xml",
"domain": "rohrabacher.house.gov",
"seniority": "18",
"state": "CA",
"district": "46"
,"missed_votes_pct": "1.57",
"votes_with_party_pct": "86.78"
},
{
"id": "R000435",
"thomas_id": "985",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000435.json",
"first_name": "Ileana",
"middle_name": null,
"last_name": "Ros-Lehtinen",
"party": "R",
"twitter_account": "RosLehtinen",
"facebook_account": "iroslehtinen",
"facebook_id": "286546974761109",
"url": "http://ros-lehtinen.house.gov/",
"rss_url": "http://ros-lehtinen.house.gov/rss.xml",
"domain": "ros-lehtinen.house.gov",
"seniority": "18",
"state": "FL",
"district": "18"
,"missed_votes_pct": "6.92",
"votes_with_party_pct": "92.48"
},
{
"id": "R000462",
"thomas_id": "1520",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000462.json",
"first_name": "Steven",
"middle_name": "R.",
"last_name": "Rothman",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "NJ",
"district": "9"
,"missed_votes_pct": "6.51",
"votes_with_party_pct": "93.30"
},
{
"id": "R000486",
"thomas_id": "997",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000486.json",
"first_name": "Lucille",
"middle_name": null,
"last_name": "Roybal-Allard",
"party": "D",
"twitter_account": "RepRoybalAllard",
"facebook_account": "RepRoybalAllard",
"facebook_id": "139773069370563",
"url": "http://roybal-allard.house.gov/",
"rss_url": "http://roybal-allard.house.gov/News/Rss.aspx",
"domain": "roybal-allard.house.gov",
"seniority": "14",
"state": "CA",
"district": "34"
,"missed_votes_pct": "6.43",
"votes_with_party_pct": "94.28"
},
{
"id": "R000487",
"thomas_id": "998",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000487.json",
"first_name": "Ed",
"middle_name": null,
"last_name": "Royce",
"party": "R",
"twitter_account": "RepEdRoyce",
"facebook_account": "EdRoyce",
"facebook_id": "6460640558",
"url": "http://royce.house.gov/",
"rss_url": "http://royce.house.gov/News/Rss.aspx",
"domain": "www.royce.house.gov",
"seniority": "14",
"state": "CA",
"district": "40"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "89.41"
},
{
"id": "R000515",
"thomas_id": "1003",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000515.json",
"first_name": "Bobby",
"middle_name": "L.",
"last_name": "Rush",
"party": "D",
"twitter_account": "RepBobbyRush",
"facebook_account": "congressmanbobbyrush",
"facebook_id": "230753786936538",
"url": "http://rush.house.gov/",
"rss_url": "http://rush.house.gov/rss.xml",
"domain": "rush.house.gov",
"seniority": "14",
"state": "IL",
"district": "1"
,"missed_votes_pct": "9.06",
"votes_with_party_pct": "92.21"
},
{
"id": "R000566",
"thomas_id": "1521",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000566.json",
"first_name": "Jim",
"middle_name": "R.",
"last_name": "Ryun",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "KS",
"district": "2"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "93.77"
},
{
"id": "R000569",
"thomas_id": "1587",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000569.json",
"first_name": "Thomas",
"middle_name": "M.",
"last_name": "Reynolds",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "NY",
"district": "26"
,"missed_votes_pct": "5.02",
"votes_with_party_pct": "94.62"
},
{
"id": "R000570",
"thomas_id": "1560",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000570.json",
"first_name": "Paul",
"middle_name": "D.",
"last_name": "Ryan",
"party": "R",
"twitter_account": "reppaulryan",
"facebook_account": "reppaulryan",
"facebook_id": "7123827676",
"url": "http://paulryan.house.gov/",
"rss_url": "http://paulryan.house.gov/news/rss.aspx",
"domain": "paulryan.house.gov",
"seniority": "8",
"state": "WI",
"district": "1"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "88.94"
},
{
"id": "R000571",
"thomas_id": "1657",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000571.json",
"first_name": "Denny",
"middle_name": null,
"last_name": "Rehberg",
"party": "R",
"twitter_account": "DennyRehberg",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "MT",
"district": "1"
,"missed_votes_pct": "0.66",
"votes_with_party_pct": "95.11"
},
{
"id": "R000572",
"thomas_id": "1651",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000572.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Rogers",
"party": "R",
"twitter_account": "RepMikeRogers",
"facebook_account": "168209963203416",
"facebook_id": "168209963203416",
"url": "http://mikerogers.house.gov/",
"rss_url": "http://mikerogers.house.gov/news/rss.aspx",
"domain": "mikerogers.house.gov",
"seniority": "6",
"state": "MI",
"district": "8"
,"missed_votes_pct": "1.24",
"votes_with_party_pct": "92.91"
},
{
"id": "R000573",
"thomas_id": "1632",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000573.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Ross",
"party": "D",
"twitter_account": "RepMikeRoss",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "AR",
"district": "4"
,"missed_votes_pct": "3.46",
"votes_with_party_pct": "85.58"
},
{
"id": "R000574",
"thomas_id": "1706",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000574.json",
"first_name": "Rick",
"middle_name": null,
"last_name": "Renzi",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "4",
"state": "AZ",
"district": "1"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "92.11"
},
{
"id": "R000575",
"thomas_id": "1704",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000575.json",
"first_name": "Mike",
"middle_name": "D.",
"last_name": "Rogers",
"party": "R",
"twitter_account": "RepMikeRogersAL",
"facebook_account": "171770326187035",
"facebook_id": "",
"url": "http://mike-rogers.house.gov/",
"rss_url": "http://mike-rogers.house.gov/rss.xml",
"domain": "mike-rogers.house.gov",
"seniority": "6",
"state": "AL",
"district": "3"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "94.84"
},
{
"id": "R000576",
"thomas_id": "1728",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000576.json",
"first_name": "C.A. Dutch",
"middle_name": null,
"last_name": "Ruppersberger",
"party": "D",
"twitter_account": "Call_Me_Dutch",
"facebook_account": "184756771570504",
"facebook_id": "",
"url": "http://ruppersberger.house.gov/",
"rss_url": "http://dutch.house.gov/atom.xml",
"domain": "dutch.house.gov",
"seniority": "4",
"state": "MD",
"district": "2"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "91.77"
},
{
"id": "R000577",
"thomas_id": "1756",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000577.json",
"first_name": "Tim",
"middle_name": null,
"last_name": "Ryan",
"party": "D",
"twitter_account": "RepTimRyan",
"facebook_account": "timryan",
"facebook_id": "121560497865",
"url": "http://timryan.house.gov/",
"rss_url": "http://timryan.house.gov/rss.xml",
"domain": "timryan.house.gov",
"seniority": "4",
"state": "OH",
"district": "17"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "92.49"
},
{
"id": "R000578",
"thomas_id": "1810",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/R000578.json",
"first_name": "Dave",
"middle_name": null,
"last_name": "Reichert",
"party": "R",
"twitter_account": "davereichert",
"facebook_account": "repdavereichert",
"facebook_id": "91504302598",
"url": "http://reichert.house.gov/",
"rss_url": "http://reichert.house.gov/rss.xml",
"domain": "reichert.house.gov",
"seniority": "2",
"state": "WA",
"district": "8"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "89.86"
},
{
"id": "S000005",
"thomas_id": "1007",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000005.json",
"first_name": "Martin",
"middle_name": "Olav",
"last_name": "Sabo",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "28",
"state": "MN",
"district": "5"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "90.48"
},
{
"id": "S000030",
"thomas_id": "1522",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000030.json",
"first_name": "Loretta",
"middle_name": null,
"last_name": "Sanchez",
"party": "D",
"twitter_account": "lorettasanchez",
"facebook_account": "LorettaSanchez",
"facebook_id": "90966961167",
"url": "http://www.lorettasanchez.house.gov/",
"rss_url": "http://lorettasanchez.house.gov/rss.xml",
"domain": "www.lorettasanchez.house.gov",
"seniority": "10",
"state": "CA",
"district": "47"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "93.47"
},
{
"id": "S000033",
"thomas_id": "1010",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000033.json",
"first_name": "Bernard",
"middle_name": null,
"last_name": "Sanders",
"party": "I",
"twitter_account": "sensanders",
"facebook_account": "senatorsanders",
"facebook_id": "9124187907",
"url": "http://www.sanders.senate.gov",
"rss_url": "http://www.sanders.senate.gov/rss/newsroom.xml",
"domain": "www.sanders.senate.gov",
"seniority": "16",
"state": "VT",
"district": "1"
,"missed_votes_pct": "4.28",
"votes_with_party_pct": "94.58"
},
{
"id": "S000097",
"thomas_id": "1023",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000097.json",
"first_name": "H. James",
"middle_name": null,
"last_name": "Saxton",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "NJ",
"district": "3"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "88.56"
},
{
"id": "S000185",
"thomas_id": "1037",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000185.json",
"first_name": "Robert",
"middle_name": "C.",
"last_name": "Scott",
"party": "D",
"twitter_account": "repbobbyscott",
"facebook_account": "CongressmanBobbyScott",
"facebook_id": "123839200978190",
"url": "http://www.bobbyscott.house.gov/",
"rss_url": "http://www.bobbyscott.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.bobbyscott.house.gov",
"seniority": "14",
"state": "VA",
"district": "3"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "91.76"
},
{
"id": "S000244",
"thomas_id": "1041",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000244.json",
"first_name": "F.",
"middle_name": "James",
"last_name": "Sensenbrenner",
"party": "R",
"twitter_account": "JimPressOffice",
"facebook_account": "RepSensenbrenner",
"facebook_id": "",
"url": "http://sensenbrenner.house.gov/",
"rss_url": "http://sensenbrenner.house.gov/news/rss.aspx",
"domain": "sensenbrenner.house.gov",
"seniority": "28",
"state": "WI",
"district": "5"
,"missed_votes_pct": "1.98",
"votes_with_party_pct": "86.13"
},
{
"id": "S000248",
"thomas_id": "1042",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000248.json",
"first_name": "José",
"middle_name": "E.",
"last_name": "Serrano",
"party": "D",
"twitter_account": "repjoseserrano",
"facebook_account": "RepJoseSerrano",
"facebook_id": "273446508512",
"url": "http://serrano.house.gov/",
"rss_url": "http://serrano.house.gov/rss.xml",
"domain": "serrano.house.gov",
"seniority": "18",
"state": "NY",
"district": "16"
,"missed_votes_pct": "2.39",
"votes_with_party_pct": "91.90"
},
{
"id": "S000250",
"thomas_id": "1525",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000250.json",
"first_name": "Pete",
"middle_name": null,
"last_name": "Sessions",
"party": "R",
"twitter_account": "petesessions",
"facebook_account": "petesessions",
"facebook_id": "367963843082",
"url": "http://sessions.house.gov/",
"rss_url": "http://sessions.house.gov/?a=RSS.Feed",
"domain": "sessions.house.gov",
"seniority": "10",
"state": "TX",
"district": "32"
,"missed_votes_pct": "10.87",
"votes_with_party_pct": "92.05"
},
{
"id": "S000275",
"thomas_id": "1043",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000275.json",
"first_name": "John",
"middle_name": null,
"last_name": "Shadegg",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "AZ",
"district": "3"
,"missed_votes_pct": "3.31",
"votes_with_party_pct": "88.63"
},
{
"id": "S000303",
"thomas_id": "1047",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000303.json",
"first_name": "E. Clay",
"middle_name": null,
"last_name": "Shaw",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "26",
"state": "FL",
"district": "22"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "93.81"
},
{
"id": "S000344",
"thomas_id": "1526",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000344.json",
"first_name": "Brad",
"middle_name": null,
"last_name": "Sherman",
"party": "D",
"twitter_account": "BradSherman",
"facebook_account": "63158229861",
"facebook_id": "63158229861",
"url": "http://bradsherman.house.gov/",
"rss_url": "http://bradsherman.house.gov/atom.xml",
"domain": "bradsherman.house.gov",
"seniority": "10",
"state": "CA",
"district": "27"
,"missed_votes_pct": "1.15",
"votes_with_party_pct": "94.33"
},
{
"id": "S000364",
"thomas_id": "1527",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000364.json",
"first_name": "John",
"middle_name": null,
"last_name": "Shimkus",
"party": "R",
"twitter_account": "RepShimkus",
"facebook_account": "repshimkus",
"facebook_id": "123916254317516",
"url": "http://shimkus.house.gov/",
"rss_url": "http://shimkus.house.gov/rss.xml",
"domain": "shimkus.house.gov",
"seniority": "10",
"state": "IL",
"district": "19"
,"missed_votes_pct": "3.29",
"votes_with_party_pct": "91.82"
},
{
"id": "S000465",
"thomas_id": "1064",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000465.json",
"first_name": "Ike",
"middle_name": null,
"last_name": "Skelton",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "30",
"state": "MO",
"district": "4"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "85.73"
},
{
"id": "S000480",
"thomas_id": "1069",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000480.json",
"first_name": "Louise",
"middle_name": "M.",
"last_name": "Slaughter",
"party": "D",
"twitter_account": "louiseslaughter",
"facebook_account": "RepLouiseSlaughter",
"facebook_id": "82424647700",
"url": "http://louise.house.gov/",
"rss_url": "http://www.louise.house.gov/index.php?format=feed&amp;type=rss",
"domain": "www.louise.house.gov",
"seniority": "20",
"state": "NY",
"district": "28"
,"missed_votes_pct": "7.91",
"votes_with_party_pct": "93.83"
},
{
"id": "S000510",
"thomas_id": "1528",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000510.json",
"first_name": "Adam",
"middle_name": null,
"last_name": "Smith",
"party": "D",
"twitter_account": "Rep_Adam_Smith",
"facebook_account": "RepAdamSmith",
"facebook_id": "288586617834523",
"url": "http://adamsmith.house.gov/",
"rss_url": "http://adamsmith.house.gov/news/rss.aspx",
"domain": "adamsmith.house.gov",
"seniority": "10",
"state": "WA",
"district": "9"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "91.08"
},
{
"id": "S000522",
"thomas_id": "1071",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000522.json",
"first_name": "Christopher",
"middle_name": "H.",
"last_name": "Smith",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "http://chrissmith.house.gov/",
"rss_url": "http://chrissmith.house.gov/News/Rss.aspx",
"domain": "chrissmith.house.gov",
"seniority": "26",
"state": "NJ",
"district": "4"
,"missed_votes_pct": "1.81",
"votes_with_party_pct": "85.23"
},
{
"id": "S000583",
"thomas_id": "1075",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000583.json",
"first_name": "Lamar",
"middle_name": null,
"last_name": "Smith",
"party": "R",
"twitter_account": "LamarSmithTX21",
"facebook_account": "LamarSmithTX21",
"facebook_id": "107736785195",
"url": "http://lamarsmith.house.gov/",
"rss_url": "http://lamarsmith.house.gov/rss.xml",
"domain": "lamarsmith.house.gov",
"seniority": "20",
"state": "TX",
"district": "21"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "96.34"
},
{
"id": "S000672",
"thomas_id": "1530",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000672.json",
"first_name": "Vic",
"middle_name": null,
"last_name": "Snyder",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "AR",
"district": "2"
,"missed_votes_pct": "5.11",
"votes_with_party_pct": "90.19"
},
{
"id": "S000749",
"thomas_id": "1092",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000749.json",
"first_name": "John",
"middle_name": "M.",
"last_name": "Spratt Jr.",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "SC",
"district": "5"
,"missed_votes_pct": "1.73",
"votes_with_party_pct": "91.03"
},
{
"id": "S000810",
"thomas_id": "1101",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000810.json",
"first_name": "Pete",
"middle_name": null,
"last_name": "Stark",
"party": "D",
"twitter_account": "petestark",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "34",
"state": "CA",
"district": "13"
,"missed_votes_pct": "10.21",
"votes_with_party_pct": "86.97"
},
{
"id": "S000822",
"thomas_id": "1103",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S000822.json",
"first_name": "Cliff",
"middle_name": null,
"last_name": "Stearns",
"party": "R",
"twitter_account": "RepCliffStearns",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "FL",
"district": "6"
,"missed_votes_pct": "1.07",
"votes_with_party_pct": "88.01"
},
{
"id": "S001004",
"thomas_id": "1118",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001004.json",
"first_name": "Ted",
"middle_name": null,
"last_name": "Strickland",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "OH",
"district": "6"
,"missed_votes_pct": "22.82",
"votes_with_party_pct": "91.25"
},
{
"id": "S001045",
"thomas_id": "1123",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001045.json",
"first_name": "Bart",
"middle_name": null,
"last_name": "Stupak",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MI",
"district": "1"
,"missed_votes_pct": "7.33",
"votes_with_party_pct": "90.67"
},
{
"id": "S001143",
"thomas_id": "1089",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001143.json",
"first_name": "Mark",
"middle_name": null,
"last_name": "Souder",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "IN",
"district": "3"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "93.59"
},
{
"id": "S001144",
"thomas_id": "1048",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001144.json",
"first_name": "Christopher",
"middle_name": "H.",
"last_name": "Shays",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "CT",
"district": "4"
,"missed_votes_pct": "5.35",
"votes_with_party_pct": "76.85"
},
{
"id": "S001145",
"thomas_id": "1588",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001145.json",
"first_name": "Jan",
"middle_name": null,
"last_name": "Schakowsky",
"party": "D",
"twitter_account": "janschakowsky",
"facebook_account": "janschakowsky",
"facebook_id": "160143957118",
"url": "http://schakowsky.house.gov/",
"rss_url": "http://schakowsky.house.gov/index.php?format=feed&amp;type=rss",
"domain": "schakowsky.house.gov",
"seniority": "8",
"state": "IL",
"district": "9"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "90.51"
},
{
"id": "S001146",
"thomas_id": "1589",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001146.json",
"first_name": "Donald",
"middle_name": "L.",
"last_name": "Sherwood",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "PA",
"district": "10"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "93.73"
},
{
"id": "S001148",
"thomas_id": "1590",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001148.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Simpson",
"party": "R",
"twitter_account": "CongMikeSimpson",
"facebook_account": "96007744606",
"facebook_id": "96007744606",
"url": "http://simpson.house.gov/",
"rss_url": "http://simpson.house.gov/news/rss.aspx",
"domain": "simpson.house.gov",
"seniority": "8",
"state": "ID",
"district": "2"
,"missed_votes_pct": "2.64",
"votes_with_party_pct": "94.50"
},
{
"id": "S001149",
"thomas_id": "1591",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001149.json",
"first_name": "John",
"middle_name": "E.",
"last_name": "Sweeney",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "NY",
"district": "20"
,"missed_votes_pct": "14.74",
"votes_with_party_pct": "88.89"
},
{
"id": "S001150",
"thomas_id": "1635",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001150.json",
"first_name": "Adam",
"middle_name": "B.",
"last_name": "Schiff",
"party": "D",
"twitter_account": "RepAdamSchiff",
"facebook_account": "RepAdamSchiff",
"facebook_id": "9086721830",
"url": "http://schiff.house.gov/",
"rss_url": "http://schiff.house.gov/common/rss/?rss=49",
"domain": "schiff.house.gov",
"seniority": "6",
"state": "CA",
"district": "29"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "94.62"
},
{
"id": "S001152",
"thomas_id": "1642",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001152.json",
"first_name": "Robert",
"middle_name": "Ruhl",
"last_name": "Simmons",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "CT",
"district": "2"
,"missed_votes_pct": "3.79",
"votes_with_party_pct": "83.13"
},
{
"id": "S001153",
"thomas_id": "1636",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001153.json",
"first_name": "Hilda",
"middle_name": "L.",
"last_name": "Solis",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "CA",
"district": "32"
,"missed_votes_pct": "3.05",
"votes_with_party_pct": "93.97"
},
{
"id": "S001154",
"thomas_id": "1681",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001154.json",
"first_name": "Bill",
"middle_name": null,
"last_name": "Shuster",
"party": "R",
"twitter_account": "RepBillShuster",
"facebook_account": "Rep.Shuster",
"facebook_id": "54386677806",
"url": "http://shuster.house.gov/",
"rss_url": "http://shuster.house.gov/common/rss//index.cfm?rss=49",
"domain": "shuster.house.gov",
"seniority": "6",
"state": "PA",
"district": "9"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "93.18"
},
{
"id": "S001155",
"thomas_id": "1689",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001155.json",
"first_name": "John",
"middle_name": null,
"last_name": "Sullivan",
"party": "R",
"twitter_account": "USRepSullivan",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "OK",
"district": "1"
,"missed_votes_pct": "5.93",
"votes_with_party_pct": "92.56"
},
{
"id": "S001156",
"thomas_id": "1757",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001156.json",
"first_name": "Linda",
"middle_name": "T.",
"last_name": "Sanchez",
"party": "D",
"twitter_account": "replindasanchez",
"facebook_account": "CongresswomanLindaSanchez",
"facebook_id": "110685735673141",
"url": "http://lindasanchez.house.gov/",
"rss_url": "http://lindasanchez.house.gov/index.php?format=feed&amp;type=rss",
"domain": "lindasanchez.house.gov",
"seniority": "4",
"state": "CA",
"district": "39"
,"missed_votes_pct": "2.55",
"votes_with_party_pct": "94.00"
},
{
"id": "S001157",
"thomas_id": "1722",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001157.json",
"first_name": "David",
"middle_name": null,
"last_name": "Scott",
"party": "D",
"twitter_account": "repdavidscott",
"facebook_account": "113303673339",
"facebook_id": "113303673339",
"url": "http://davidscott.house.gov/",
"rss_url": "http://davidscott.house.gov/news/rss.aspx",
"domain": "davidscott.house.gov",
"seniority": "4",
"state": "GA",
"district": "13"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "88.56"
},
{
"id": "S001158",
"thomas_id": "1775",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001158.json",
"first_name": "John",
"middle_name": null,
"last_name": "Salazar",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "CO",
"district": "3"
,"missed_votes_pct": "2.47",
"votes_with_party_pct": "87.33"
},
{
"id": "S001160",
"thomas_id": "1783",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001160.json",
"first_name": "Michael",
"middle_name": "E.",
"last_name": "Sodrel",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "IN",
"district": "9"
,"missed_votes_pct": "0.58",
"votes_with_party_pct": "94.70"
},
{
"id": "S001161",
"thomas_id": "1788",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001161.json",
"first_name": "John",
"middle_name": "J.H.",
"last_name": "Schwarz",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "MI",
"district": "7"
,"missed_votes_pct": "2.80",
"votes_with_party_pct": "89.75"
},
{
"id": "S001162",
"thomas_id": "1798",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001162.json",
"first_name": "Allyson",
"middle_name": "Y.",
"last_name": "Schwartz",
"party": "D",
"twitter_account": "",
"facebook_account": "RepAllysonSchwartz",
"facebook_id": "244000962363116",
"url": "http://schwartz.house.gov/",
"rss_url": "http://schwartz.house.gov/rss.xml",
"domain": "schwartz.house.gov",
"seniority": "2",
"state": "PA",
"district": "13"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "93.02"
},
{
"id": "S001164",
"thomas_id": "1815",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001164.json",
"first_name": "Jean",
"middle_name": null,
"last_name": "Schmidt",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "OH",
"district": "2"
,"missed_votes_pct": "0.39",
"votes_with_party_pct": "95.65"
},
{
"id": "S001165",
"thomas_id": "1818",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001165.json",
"first_name": "Albio",
"middle_name": null,
"last_name": "Sires",
"party": "D",
"twitter_account": "Rep_Albio_Sires",
"facebook_account": "81058818750",
"facebook_id": "81058818750",
"url": "http://sires.house.gov/",
"rss_url": "http://sires.house.gov/rss.xml",
"domain": "sires.house.gov",
"seniority": "2",
"state": "NJ",
"district": "13"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "88.89"
},
{
"id": "S001166",
"thomas_id": "1819",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/S001166.json",
"first_name": "Shelley",
"middle_name": null,
"last_name": "Sekula-Gibbs",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "2",
"state": "TX",
"district": "22"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "88.89"
},
{
"id": "T000038",
"thomas_id": "1137",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000038.json",
"first_name": "John",
"middle_name": null,
"last_name": "Tanner",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "TN",
"district": "8"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "81.80"
},
{
"id": "T000057",
"thomas_id": "1533",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000057.json",
"first_name": "Ellen",
"middle_name": "O.",
"last_name": "Tauscher",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "CA",
"district": "10"
,"missed_votes_pct": "1.07",
"votes_with_party_pct": "94.09"
},
{
"id": "T000067",
"thomas_id": "1141",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000067.json",
"first_name": "Charles",
"middle_name": "H.",
"last_name": "Taylor",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "16",
"state": "NC",
"district": "11"
,"missed_votes_pct": "5.68",
"votes_with_party_pct": "94.50"
},
{
"id": "T000074",
"thomas_id": "1142",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000074.json",
"first_name": "Gene",
"middle_name": null,
"last_name": "Taylor",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "MS",
"district": "4"
,"missed_votes_pct": "5.19",
"votes_with_party_pct": "74.89"
},
{
"id": "T000188",
"thomas_id": "1148",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000188.json",
"first_name": "William",
"middle_name": "M.",
"last_name": "Thomas",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "28",
"state": "CA",
"district": "22"
,"missed_votes_pct": "4.78",
"votes_with_party_pct": "93.69"
},
{
"id": "T000193",
"thomas_id": "1151",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000193.json",
"first_name": "Bennie",
"middle_name": null,
"last_name": "Thompson",
"party": "D",
"twitter_account": "BennieGThompson",
"facebook_account": "7259193379",
"facebook_id": "7259193379",
"url": "http://benniethompson.house.gov/",
"rss_url": "http://benniethompson.house.gov/index.php?format=feed&amp;type=rss",
"domain": "benniethompson.house.gov",
"seniority": "14",
"state": "MS",
"district": "2"
,"missed_votes_pct": "1.57",
"votes_with_party_pct": "92.55"
},
{
"id": "T000238",
"thomas_id": "1155",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000238.json",
"first_name": "William",
"middle_name": "M.",
"last_name": "Thornberry",
"party": "R",
"twitter_account": "MacTXPress",
"facebook_account": "repmacthornberry",
"facebook_id": "7760165627",
"url": "http://thornberry.house.gov/",
"rss_url": "",
"domain": "thornberry.house.gov",
"seniority": "12",
"state": "TX",
"district": "13"
,"missed_votes_pct": "0.99",
"votes_with_party_pct": "93.01"
},
{
"id": "T000260",
"thomas_id": "1158",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000260.json",
"first_name": "Todd",
"middle_name": null,
"last_name": "Tiahrt",
"party": "R",
"twitter_account": "RepToddTiahrt",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "KS",
"district": "4"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "93.54"
},
{
"id": "T000266",
"thomas_id": "1535",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000266.json",
"first_name": "John",
"middle_name": "F.",
"last_name": "Tierney",
"party": "D",
"twitter_account": "RepTierney",
"facebook_account": "CongressmanJohnTierney",
"facebook_id": "203760666318846",
"url": "http://tierney.house.gov/",
"rss_url": "http://tierney.house.gov/index.php?format=feed&amp;type=rss",
"domain": "tierney.house.gov",
"seniority": "10",
"state": "MA",
"district": "6"
,"missed_votes_pct": "1.48",
"votes_with_party_pct": "92.06"
},
{
"id": "T000326",
"thomas_id": "1165",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000326.json",
"first_name": "Edolphus",
"middle_name": "",
"last_name": "Towns",
"party": "D",
"twitter_account": "edtowns",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "24",
"state": "NY",
"district": "10"
,"missed_votes_pct": "8.24",
"votes_with_party_pct": "91.56"
},
{
"id": "T000458",
"thomas_id": "1592",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000458.json",
"first_name": "Thomas",
"middle_name": "G.",
"last_name": "Tancredo",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "CO",
"district": "6"
,"missed_votes_pct": "5.44",
"votes_with_party_pct": "85.02"
},
{
"id": "T000459",
"thomas_id": "1566",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000459.json",
"first_name": "Lee",
"middle_name": null,
"last_name": "Terry",
"party": "R",
"twitter_account": "LEETERRYNE",
"facebook_account": "leeterry",
"facebook_id": "393886975960",
"url": "http://leeterry.house.gov/",
"rss_url": "http://leeterry.house.gov/index.php?format=feed&amp;type=rss",
"domain": "leeterry.house.gov",
"seniority": "8",
"state": "NE",
"district": "2"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "93.01"
},
{
"id": "T000460",
"thomas_id": "1593",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000460.json",
"first_name": "Mike",
"middle_name": null,
"last_name": "Thompson",
"party": "D",
"twitter_account": "RepThompson",
"facebook_account": "RepMikeThompson",
"facebook_id": "7109195747",
"url": "http://mikethompson.house.gov/",
"rss_url": "http://mikethompson.house.gov/news/rss.aspx",
"domain": "mikethompson.house.gov",
"seniority": "8",
"state": "CA",
"district": "1"
,"missed_votes_pct": "0.74",
"votes_with_party_pct": "92.37"
},
{
"id": "T000462",
"thomas_id": "1664",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000462.json",
"first_name": "Pat",
"middle_name": null,
"last_name": "Tiberi",
"party": "R",
"twitter_account": "tiberipress",
"facebook_account": "RepPatTiberi",
"facebook_id": "90452932937",
"url": "http://tiberi.house.gov/",
"rss_url": "http://tiberi.house.gov/news/rss.aspx",
"domain": "tiberi.house.gov",
"seniority": "6",
"state": "OH",
"district": "12"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "92.78"
},
{
"id": "T000463",
"thomas_id": "1741",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/T000463.json",
"first_name": "Michael",
"middle_name": "R.",
"last_name": "Turner",
"party": "R",
"twitter_account": "RepMikeTurner",
"facebook_account": "RepMikeTurner",
"facebook_id": "9275036647",
"url": "http://turner.house.gov/",
"rss_url": "http://turner.house.gov/news/rss.aspx",
"domain": "turner.house.gov",
"seniority": "4",
"state": "OH",
"district": "3"
,"missed_votes_pct": "1.57",
"votes_with_party_pct": "93.89"
},
{
"id": "U000031",
"thomas_id": "1177",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/U000031.json",
"first_name": "Fred",
"middle_name": null,
"last_name": "Upton",
"party": "R",
"twitter_account": "RepFredUpton",
"facebook_account": "RepFredUpton",
"facebook_id": "212027388827797",
"url": "http://upton.house.gov/",
"rss_url": "http://upton.house.gov/news/rss.aspx",
"domain": "upton.house.gov",
"seniority": "20",
"state": "MI",
"district": "6"
,"missed_votes_pct": "0.00",
"votes_with_party_pct": "89.13"
},
{
"id": "U000038",
"thomas_id": "1595",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/U000038.json",
"first_name": "Mark",
"middle_name": null,
"last_name": "Udall",
"party": "D",
"twitter_account": "MarkUdall",
"facebook_account": "markudall",
"facebook_id": "17204170252",
"url": "http://www.markudall.senate.gov",
"rss_url": "http://www.markudall.senate.gov/rss/?p=blog",
"domain": "",
"seniority": "8",
"state": "CO",
"district": "2"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "91.77"
},
{
"id": "U000039",
"thomas_id": "1567",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/U000039.json",
"first_name": "Tom",
"middle_name": null,
"last_name": "Udall",
"party": "D",
"twitter_account": "SenatorTomUdall",
"facebook_account": "senatortomudall",
"facebook_id": "106433512869",
"url": "http://www.tomudall.senate.gov",
"rss_url": "http://www.tomudall.senate.gov/rss/",
"domain": "",
"seniority": "8",
"state": "NM",
"district": "3"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "92.54"
},
{
"id": "V000081",
"thomas_id": "1184",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/V000081.json",
"first_name": "Nydia",
"middle_name": "M.",
"last_name": "Velázquez",
"party": "D",
"twitter_account": "NydiaVelazquez",
"facebook_account": "",
"facebook_id": "",
"url": "http://velazquez.house.gov/",
"rss_url": "",
"domain": "velazquez.house.gov",
"seniority": "14",
"state": "NY",
"district": "12"
,"missed_votes_pct": "2.97",
"votes_with_party_pct": "92.28"
},
{
"id": "V000108",
"thomas_id": "1188",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/V000108.json",
"first_name": "Peter",
"middle_name": "J.",
"last_name": "Visclosky",
"party": "D",
"twitter_account": "repvisclosky",
"facebook_account": "repvisclosky",
"facebook_id": "118723661514709",
"url": "http://visclosky.house.gov/",
"rss_url": "http://visclosky.house.gov/rss.xml",
"domain": "visclosky.house.gov",
"seniority": "22",
"state": "IN",
"district": "1"
,"missed_votes_pct": "1.40",
"votes_with_party_pct": "91.48"
},
{
"id": "V000128",
"thomas_id": "1729",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/V000128.json",
"first_name": "Chris",
"middle_name": null,
"last_name": "Van Hollen",
"party": "D",
"twitter_account": "chrisvanhollen",
"facebook_account": "chrisvanhollen",
"facebook_id": "109304033877",
"url": "http://vanhollen.house.gov/",
"rss_url": "http://vanhollen.house.gov/news/rss.aspx",
"domain": "vanhollen.house.gov",
"seniority": "4",
"state": "MD",
"district": "8"
,"missed_votes_pct": "0.25",
"votes_with_party_pct": "95.62"
},
{
"id": "W000099",
"thomas_id": "1197",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000099.json",
"first_name": "James",
"middle_name": "T.",
"last_name": "Walsh",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "18",
"state": "NY",
"district": "25"
,"missed_votes_pct": "4.45",
"votes_with_party_pct": "91.81"
},
{
"id": "W000119",
"thomas_id": "1199",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000119.json",
"first_name": "Zach",
"middle_name": null,
"last_name": "Wamp",
"party": "R",
"twitter_account": "zachwamp",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "TN",
"district": "3"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "93.09"
},
{
"id": "W000187",
"thomas_id": "1205",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000187.json",
"first_name": "Maxine",
"middle_name": null,
"last_name": "Waters",
"party": "D",
"twitter_account": "MaxineWaters",
"facebook_account": "MaxineWaters",
"facebook_id": "117483585008",
"url": "http://waters.house.gov/",
"rss_url": "http://waters.house.gov/news/rss.aspx",
"domain": "waters.house.gov",
"seniority": "16",
"state": "CA",
"district": "35"
,"missed_votes_pct": "8.81",
"votes_with_party_pct": "89.25"
},
{
"id": "W000207",
"thomas_id": "1207",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000207.json",
"first_name": "Melvin",
"middle_name": null,
"last_name": "Watt",
"party": "D",
"twitter_account": "MelWattNC12",
"facebook_account": "CongressmanMelWatt",
"facebook_id": "191136754250537",
"url": "http://watt.house.gov/",
"rss_url": "http://watt.house.gov/index.php?format=feed&amp;type=rss",
"domain": "watt.house.gov",
"seniority": "14",
"state": "NC",
"district": "12"
,"missed_votes_pct": "2.22",
"votes_with_party_pct": "92.00"
},
{
"id": "W000215",
"thomas_id": "1209",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000215.json",
"first_name": "Henry",
"middle_name": "A.",
"last_name": "Waxman",
"party": "D",
"twitter_account": "WaxmanClimate",
"facebook_account": "Rep.HenryWaxman",
"facebook_id": "129514917081997",
"url": "http://www.henrywaxman.house.gov/",
"rss_url": "http://waxman.house.gov/rss.xml",
"domain": "www.henrywaxman.house.gov",
"seniority": "32",
"state": "CA",
"district": "30"
,"missed_votes_pct": "4.53",
"votes_with_party_pct": "93.53"
},
{
"id": "W000267",
"thomas_id": "1215",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000267.json",
"first_name": "David",
"middle_name": "J.",
"last_name": "Weldon",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "FL",
"district": "15"
,"missed_votes_pct": "3.13",
"votes_with_party_pct": "93.88"
},
{
"id": "W000268",
"thomas_id": "1214",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000268.json",
"first_name": "W. Curtis",
"middle_name": null,
"last_name": "Weldon",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "20",
"state": "PA",
"district": "7"
,"missed_votes_pct": "4.70",
"votes_with_party_pct": "88.59"
},
{
"id": "W000273",
"thomas_id": "1216",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000273.json",
"first_name": "Gerald",
"middle_name": "C.",
"last_name": "Weller",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "12",
"state": "IL",
"district": "11"
,"missed_votes_pct": "2.64",
"votes_with_party_pct": "92.22"
},
{
"id": "W000314",
"thomas_id": "1537",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000314.json",
"first_name": "Robert",
"middle_name": null,
"last_name": "Wexler",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "FL",
"district": "19"
,"missed_votes_pct": "9.23",
"votes_with_party_pct": "94.01"
},
{
"id": "W000413",
"thomas_id": "1222",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000413.json",
"first_name": "Edward",
"middle_name": null,
"last_name": "Whitfield",
"party": "R",
"twitter_account": "repedwhitfield",
"facebook_account": "RepEdWhitfield",
"facebook_id": "91115765425",
"url": "http://whitfield.house.gov/",
"rss_url": "http://whitfield.house.gov/rss.xml",
"domain": "whitfield.house.gov",
"seniority": "12",
"state": "KY",
"district": "1"
,"missed_votes_pct": "3.95",
"votes_with_party_pct": "92.80"
},
{
"id": "W000437",
"thomas_id": "1226",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000437.json",
"first_name": "Roger",
"middle_name": null,
"last_name": "Wicker",
"party": "R",
"twitter_account": "senatorwicker",
"facebook_account": "SenatorWicker",
"facebook_id": "",
"url": "http://www.wicker.senate.gov",
"rss_url": "",
"domain": "wicker.senate.gov",
"seniority": "12",
"state": "MS",
"district": "1"
,"missed_votes_pct": "2.88",
"votes_with_party_pct": "96.18"
},
{
"id": "W000672",
"thomas_id": "1238",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000672.json",
"first_name": "Frank",
"middle_name": "R.",
"last_name": "Wolf",
"party": "R",
"twitter_account": "RepWOLFPress",
"facebook_account": "RepFrankWolf",
"facebook_id": "335759964938",
"url": "http://wolf.house.gov/",
"rss_url": "http://wolf.house.gov/common/rss//index.cfm?rss=34",
"domain": "wolf.house.gov",
"seniority": "26",
"state": "VA",
"district": "10"
,"missed_votes_pct": "1.32",
"votes_with_party_pct": "91.32"
},
{
"id": "W000738",
"thomas_id": "1242",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000738.json",
"first_name": "Lynn",
"middle_name": null,
"last_name": "Woolsey",
"party": "D",
"twitter_account": "RepLynnWoolsey",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "CA",
"district": "6"
,"missed_votes_pct": "2.31",
"votes_with_party_pct": "90.73"
},
{
"id": "W000784",
"thomas_id": "1251",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000784.json",
"first_name": "Albert",
"middle_name": "Russell",
"last_name": "Wynn",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "14",
"state": "MD",
"district": "4"
,"missed_votes_pct": "2.64",
"votes_with_party_pct": "91.29"
},
{
"id": "W000789",
"thomas_id": "1539",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000789.json",
"first_name": "Heather",
"middle_name": "A.",
"last_name": "Wilson",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "10",
"state": "NM",
"district": "1"
,"missed_votes_pct": "1.89",
"votes_with_party_pct": "89.50"
},
{
"id": "W000791",
"thomas_id": "1596",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000791.json",
"first_name": "Greg",
"middle_name": null,
"last_name": "Walden",
"party": "R",
"twitter_account": "repgregwalden",
"facebook_account": "repgregwalden",
"facebook_id": "313301365382225",
"url": "http://walden.house.gov/",
"rss_url": "http://walden.house.gov/common/rss/?rss=100",
"domain": "walden.house.gov",
"seniority": "8",
"state": "OR",
"district": "2"
,"missed_votes_pct": "0.91",
"votes_with_party_pct": "93.60"
},
{
"id": "W000792",
"thomas_id": "1597",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000792.json",
"first_name": "Anthony",
"middle_name": "",
"last_name": "Weiner",
"party": "D",
"twitter_account": "repweiner",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "NY",
"district": "9"
,"missed_votes_pct": "4.94",
"votes_with_party_pct": "95.06"
},
{
"id": "W000793",
"thomas_id": "1598",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000793.json",
"first_name": "David",
"middle_name": null,
"last_name": "Wu",
"party": "D",
"twitter_account": "davidwu2010",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "8",
"state": "OR",
"district": "1"
,"missed_votes_pct": "0.82",
"votes_with_party_pct": "90.28"
},
{
"id": "W000794",
"thomas_id": "1682",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000794.json",
"first_name": "Diane",
"middle_name": null,
"last_name": "Watson",
"party": "D",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "",
"domain": "",
"seniority": "6",
"state": "CA",
"district": "33"
,"missed_votes_pct": "9.14",
"votes_with_party_pct": "92.20"
},
{
"id": "W000795",
"thomas_id": "1688",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000795.json",
"first_name": "Joe",
"middle_name": null,
"last_name": "Wilson",
"party": "R",
"twitter_account": "USRepJoeWilson",
"facebook_account": "JoeWilson",
"facebook_id": "70150469414",
"url": "http://joewilson.house.gov/",
"rss_url": "http://joewilson.house.gov/news/rss.aspx",
"domain": "joewilson.house.gov",
"seniority": "6",
"state": "SC",
"district": "2"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "93.16"
},
{
"id": "W000796",
"thomas_id": "1779",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000796.json",
"first_name": "Lynn",
"middle_name": null,
"last_name": "Westmoreland",
"party": "R",
"twitter_account": "repwestmoreland",
"facebook_account": "71389451419",
"facebook_id": "71389451419",
"url": "http://westmoreland.house.gov/",
"rss_url": "http://westmoreland.house.gov/index.php?format=feed&amp;type=rss",
"domain": "westmoreland.house.gov",
"seniority": "2",
"state": "GA",
"district": "8"
,"missed_votes_pct": "4.86",
"votes_with_party_pct": "89.26"
},
{
"id": "W000797",
"thomas_id": "1777",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/W000797.json",
"first_name": "Debbie",
"middle_name": null,
"last_name": "Wasserman Schultz",
"party": "D",
"twitter_account": "RepDWStweets",
"facebook_account": "RepDWS",
"facebook_id": "88904724121",
"url": "http://wassermanschultz.house.gov/",
"rss_url": "http://wassermanschultz.house.gov/atom.xml",
"domain": "wassermanschultz.house.gov",
"seniority": "2",
"state": "FL",
"district": "20"
,"missed_votes_pct": "3.62",
"votes_with_party_pct": "93.33"
},
{
"id": "Y000031",
"thomas_id": "1255",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/Y000031.json",
"first_name": "C. W. Bill",
"middle_name": null,
"last_name": "Young",
"party": "R",
"twitter_account": "",
"facebook_account": "",
"facebook_id": "",
"url": "",
"rss_url": "http://young.house.gov/rss.xml",
"domain": "young.house.gov",
"seniority": "36",
"state": "FL",
"district": "10"
,"missed_votes_pct": "8.65",
"votes_with_party_pct": "92.25"
},
{
"id": "Y000033",
"thomas_id": "1256",
"api_uri":"http://api.nytimes.com/svc/politics/v3/us/legislative/congress/members/Y000033.json",
"first_name": "Don",
"middle_name": null,
"last_name": "Young",
"party": "R",
"twitter_account": "repdonyoung",
"facebook_account": "RepDonYoung",
"facebook_id": "7476269851",
"url": "http://donyoung.house.gov/",
"rss_url": "http://donyoung.house.gov/news/rss.aspx",
"domain": "donyoung.house.gov",
"seniority": "34",
"state": "AK",
"district": "1"
,"missed_votes_pct": "8.24",
"votes_with_party_pct": "92.10"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment