fantasy_football_nerd 0.9.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +260 -120
- data/lib/fantasy_football_nerd.rb +56 -201
- data/lib/fantasy_football_nerd/request.rb +19 -0
- data/lib/fantasy_football_nerd/util.rb +29 -0
- data/spec/api_key_setter_spec.rb +18 -0
- data/spec/fantasy_football_nerd_spec.rb +162 -154
- data/spec/request_spec.rb +16 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_auction_values.yml +331 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_bye_weeks.yml +70 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_draft_projections.yml +98 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_injuries_with_a_week.yml +847 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_injuries_without_a_week.yml +844 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_players.yml +1674 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_teams.yml +70 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_the_current_week.yml +306 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_the_ppr_draft_rankings.yml +1170 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_the_schedule.yml +306 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_the_standard_draft_rankings.yml +1167 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_weekly_projections.yml +108 -0
- data/spec/vcr/cassettes/Fantasy_Football_Nerd_Gem/should_retrieve_weekly_rankings.yml +112 -0
- metadata +27 -43
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
|
3
|
+
module Request
|
4
|
+
|
5
|
+
def base_url
|
6
|
+
"http://www.fantasyfootballnerd.com/service"
|
7
|
+
end
|
8
|
+
|
9
|
+
def service_url(service, api_key, extras = [])
|
10
|
+
service = service.to_s
|
11
|
+
[base_url, service, "json", api_key, extras].join("/").gsub(/\/$/, '')
|
12
|
+
end
|
13
|
+
|
14
|
+
def request_service(service, api_key, extras = [])
|
15
|
+
url = service_url(service, api_key, extras)
|
16
|
+
JSON.parse(open(url).read)
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class Hash
|
2
|
+
|
3
|
+
def add_snakecase_keys
|
4
|
+
new_hash = {}
|
5
|
+
self.each do |k,v|
|
6
|
+
v.add_snakecase_keys if v.is_a? Hash
|
7
|
+
new_hash[k.snakecase] = v
|
8
|
+
end
|
9
|
+
self.merge!(new_hash)
|
10
|
+
end
|
11
|
+
|
12
|
+
def change_key(source, target)
|
13
|
+
self[target] = self[source]
|
14
|
+
self.delete(source)
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
class String
|
20
|
+
def snakecase
|
21
|
+
self.gsub(/::/, '/').
|
22
|
+
gsub(/TD/, 'Td').
|
23
|
+
gsub(/PA/, 'Pa').
|
24
|
+
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
|
25
|
+
gsub(/([a-z\d])([A-Z])/,'\1_\2').
|
26
|
+
tr("-", "_").
|
27
|
+
downcase
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper.rb'
|
2
|
+
require_relative '../lib/fantasy_football_nerd.rb'
|
3
|
+
|
4
|
+
describe 'API KEY setter' do
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
ENV['FFNERD_API_KEY'] = '12345'
|
8
|
+
end
|
9
|
+
|
10
|
+
it 'should set the API key from the ENV variable' do
|
11
|
+
expect(FFNerd.api_key).to eq '12345'
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'should set the API key from the setter' do
|
15
|
+
FFNerd.api_key = '678910'
|
16
|
+
expect(FFNerd.api_key).to eq '678910'
|
17
|
+
end
|
18
|
+
end
|
@@ -1,182 +1,190 @@
|
|
1
1
|
require 'spec_helper.rb'
|
2
2
|
require_relative '../lib/fantasy_football_nerd.rb'
|
3
3
|
|
4
|
-
describe 'Fantasy Football Nerd Gem' do
|
5
|
-
before (:each) do
|
6
|
-
FFNerd.api_key = '123456789'
|
7
|
-
end
|
4
|
+
describe 'Fantasy Football Nerd Gem', vcr: true do
|
8
5
|
|
9
|
-
|
10
|
-
|
11
|
-
FFNerd.feed_url(:schedule).should =~ /ffnScheduleXML.php/
|
12
|
-
FFNerd.feed_url(:projections).should =~ /ffnSitStartXML.php/
|
13
|
-
FFNerd.feed_url(:injuries).should =~ /ffnInjuriesXML.php/
|
14
|
-
FFNerd.feed_url(:all_players).should =~ /ffnPlayersXML.php/
|
15
|
-
FFNerd.feed_url(:player).should =~ /ffnPlayerDetailsXML.php/
|
16
|
-
FFNerd.feed_url(:schedule).should =~ /apiKey=\d+/
|
17
|
-
end
|
18
|
-
|
19
|
-
it 'should take parameters' do
|
20
|
-
url = FFNerd.feed_url(:schedule, week: 12)
|
21
|
-
url.should =~ /&week=12/
|
22
|
-
end
|
6
|
+
before :each do
|
7
|
+
FFNerd.api_key = 'test'
|
23
8
|
end
|
24
9
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
it 'should get a url for details on a specific player' do
|
31
|
-
url = FFNerd.player_url(13)
|
32
|
-
url.should =~ /ffnPlayerDetailsXML.php\?apiKey=\d+&playerId=13/
|
33
|
-
end
|
34
|
-
|
35
|
-
it 'should get a url for a week\'s projections' do
|
36
|
-
url = FFNerd.projections_url(:all, 1)
|
37
|
-
url.should =~ /ffnSitStartXML.php\?apiKey=\d+&week=1&position=ALL/
|
38
|
-
end
|
39
|
-
|
40
|
-
it 'should get an injury url' do
|
41
|
-
url = FFNerd.injuries_url(1)
|
42
|
-
url.should =~ /ffnInjuriesXML.php\?apiKey=\d+&week=1/
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'should get a list of all players' do
|
46
|
-
url = FFNerd.player_list_url
|
47
|
-
url.should =~ /ffnPlayersXML.php\?apiKey=\d+/
|
48
|
-
end
|
10
|
+
it 'should retrieve teams' do
|
11
|
+
team = FFNerd.teams.first
|
12
|
+
expect(team.code).to eq "ARI"
|
13
|
+
expect(team.full_name).to eq "Arizona Cardinals"
|
14
|
+
expect(team.short_name).to eq "Arizona"
|
49
15
|
end
|
50
16
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
17
|
+
it 'should retrieve the schedule' do
|
18
|
+
game = FFNerd.schedule.first
|
19
|
+
expect(game.game_id).to eq "1"
|
20
|
+
expect(game.game_week).to eq "1"
|
21
|
+
expect(game.game_date).to eq "2013-09-05"
|
22
|
+
expect(game.away_team).to eq "BAL"
|
23
|
+
expect(game.home_team).to eq "DEN"
|
57
24
|
end
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
25
|
+
|
26
|
+
it 'should retrieve players' do
|
27
|
+
player = FFNerd.players.first
|
28
|
+
expect(player.player_id).to eq "2"
|
29
|
+
expect(player.active).to eq "1"
|
30
|
+
expect(player.jersey).to eq "3"
|
31
|
+
expect(player.lname).to eq "Anderson"
|
32
|
+
expect(player.fname).to eq "Derek"
|
33
|
+
expect(player.display_name).to eq "Derek Anderson"
|
34
|
+
expect(player.team).to eq "CAR"
|
35
|
+
expect(player.position).to eq "QB"
|
36
|
+
expect(player.height).to eq "6-6"
|
37
|
+
expect(player.weight).to eq "240"
|
38
|
+
expect(player.dob).to eq "1983-06-15"
|
39
|
+
expect(player.college).to eq "Oregon State"
|
71
40
|
end
|
72
41
|
|
73
|
-
it 'should
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
articles.should be_a Array
|
79
|
-
articles.first.title.should == "New England Patriots best New Orleans Saints, 7-6"
|
80
|
-
articles.first.source.should == "http://www.nfl.com/goto?id=0ap2000000048294"
|
81
|
-
articles.first.published.should == Date.new(2012, 8, 10)
|
82
|
-
end
|
42
|
+
it 'should retrieve bye weeks' do
|
43
|
+
bye = FFNerd.byes(4).first
|
44
|
+
expect(bye.team).to eq "CAR"
|
45
|
+
expect(bye.bye_week).to eq "4"
|
46
|
+
expect(bye.display_name).to eq "Carolina Panthers"
|
83
47
|
end
|
84
48
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
end
|
49
|
+
it 'should retrieve injuries without a week' do
|
50
|
+
injury = FFNerd.injuries.first
|
51
|
+
expect(injury.week).to eq "1"
|
52
|
+
expect(injury.player_id).to eq "0"
|
53
|
+
expect(injury.player_name).to eq "Javier Arenas"
|
54
|
+
expect(injury.team).to eq "ARI"
|
55
|
+
expect(injury.position).to eq "CB"
|
56
|
+
expect(injury.injury).to eq "Hip"
|
57
|
+
expect(injury.practice_status).to eq "Full Practice"
|
58
|
+
expect(injury.game_status).to eq "Probable"
|
59
|
+
expect(injury.notes).to eq ""
|
60
|
+
expect(injury.last_update).to eq "2013-09-09"
|
61
|
+
expect(injury.practice_status_id).to eq 0
|
99
62
|
end
|
100
63
|
|
101
|
-
it 'should
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
64
|
+
it 'should retrieve injuries with a week' do
|
65
|
+
injury = FFNerd.injuries(1).first
|
66
|
+
expect(injury.week).to eq "1"
|
67
|
+
expect(injury.player_id).to eq "0"
|
68
|
+
expect(injury.player_name).to eq "Javier Arenas"
|
69
|
+
expect(injury.team).to eq "ARI"
|
70
|
+
expect(injury.position).to eq "CB"
|
71
|
+
expect(injury.injury).to eq "Hip"
|
72
|
+
expect(injury.practice_status).to eq "Full Practice"
|
73
|
+
expect(injury.game_status).to eq "Probable"
|
74
|
+
expect(injury.notes).to eq ""
|
75
|
+
expect(injury.last_update).to eq "2013-09-09"
|
76
|
+
expect(injury.practice_status_id).to eq 0
|
112
77
|
end
|
113
78
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
name: "Derek Anderson",
|
124
|
-
position: "QB",
|
125
|
-
team: "CAR",
|
126
|
-
id: 2
|
127
|
-
)
|
128
|
-
end
|
79
|
+
it 'should retrieve auction values' do
|
80
|
+
value = FFNerd.auction_values.first
|
81
|
+
expect(value.player_id).to eq "259"
|
82
|
+
expect(value.min_price).to eq "60"
|
83
|
+
expect(value.max_price).to eq "66"
|
84
|
+
expect(value.avg_price).to eq "63"
|
85
|
+
expect(value.display_name).to eq "Adrian Peterson"
|
86
|
+
expect(value.team).to eq "MIN"
|
87
|
+
expect(value.position).to eq "RB"
|
129
88
|
end
|
130
89
|
|
131
|
-
|
132
|
-
|
133
|
-
#############################################################################
|
134
|
-
|
135
|
-
it 'should retrieve player data from the projection feed' do
|
136
|
-
VCR.use_cassette('projections') do
|
137
|
-
projections = FFNerd.projections(3, :all)
|
138
|
-
player = projections.first
|
139
|
-
test_values(player,
|
140
|
-
name: "Ray Rice",
|
141
|
-
projected_points: 19.60,
|
142
|
-
team: "BAL",
|
143
|
-
position: "RB",
|
144
|
-
id: 269,
|
145
|
-
rank: 1
|
146
|
-
)
|
147
|
-
end
|
90
|
+
it 'should retrieve the current week' do
|
91
|
+
expect(FFNerd.current_week).to eq 17
|
148
92
|
end
|
149
93
|
|
150
|
-
it 'should retrieve
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
94
|
+
it 'should retrieve the standard draft rankings' do
|
95
|
+
# player 3 is where we get the first deviation between standard and ppr
|
96
|
+
player = FFNerd.standard_draft_rankings[3]
|
97
|
+
expect(player.playerId).to eq "1136"
|
98
|
+
expect(player.position).to eq "RB"
|
99
|
+
expect(player.displayName).to eq "C.J. Spiller"
|
100
|
+
expect(player.fname).to eq "C.J."
|
101
|
+
expect(player.lname).to eq "Spiller"
|
102
|
+
expect(player.team).to eq "BUF"
|
103
|
+
expect(player.byeWeek).to eq "12"
|
104
|
+
expect(player.nerdRank).to eq "6.140"
|
105
|
+
expect(player.positionRank).to eq "4"
|
106
|
+
expect(player.overallRank).to eq "4"
|
163
107
|
end
|
164
108
|
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
109
|
+
it 'should retrieve the ppr draft rankings' do
|
110
|
+
player = FFNerd.ppr_draft_rankings[3]
|
111
|
+
expect(player.player_id).to eq "454"
|
112
|
+
expect(player.position).to eq "WR"
|
113
|
+
expect(player.display_name).to eq "Calvin Johnson"
|
114
|
+
expect(player.fname).to eq "Calvin"
|
115
|
+
expect(player.lname).to eq "Johnson"
|
116
|
+
expect(player.team).to eq "DET"
|
117
|
+
expect(player.bye_week).to eq "9"
|
118
|
+
expect(player.nerd_rank).to eq "7.209"
|
119
|
+
expect(player.position_rank).to eq "1"
|
120
|
+
expect(player.overall_rank).to eq "4"
|
121
|
+
end
|
169
122
|
|
170
|
-
|
123
|
+
it 'should retrieve draft projections' do
|
124
|
+
player = FFNerd.draft_projections('QB').first
|
125
|
+
expect(player.player_id).to eq "14"
|
126
|
+
expect(player.completions).to eq "422"
|
127
|
+
expect(player.attempts).to eq "640"
|
128
|
+
expect(player.passing_yards).to eq "4992"
|
129
|
+
expect(player.passing_td).to eq "40"
|
130
|
+
expect(player.passing_int).to eq "17"
|
131
|
+
expect(player.rush_yards).to eq "28"
|
132
|
+
expect(player.rush_td).to eq "1"
|
133
|
+
expect(player.fantasy_points).to eq "335"
|
134
|
+
expect(player.display_name).to eq "Drew Brees"
|
135
|
+
expect(player.team).to eq "NO"
|
136
|
+
end
|
171
137
|
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
138
|
+
it 'should retrieve weekly rankings' do
|
139
|
+
player = FFNerd.weekly_rankings('QB', 2).first
|
140
|
+
expect(player.week).to eq "2"
|
141
|
+
expect(player.player_id).to eq "14"
|
142
|
+
expect(player.name).to eq "Drew Brees"
|
143
|
+
expect(player.position).to eq "QB"
|
144
|
+
expect(player.team).to eq "NO"
|
145
|
+
expect(player.standard).to eq "24.80"
|
146
|
+
expect(player.standard_low).to eq "18.92"
|
147
|
+
expect(player.standard_high).to eq "32.00"
|
148
|
+
expect(player.ppr).to eq "24.80"
|
149
|
+
expect(player.ppr_low).to eq "18.92"
|
150
|
+
expect(player.ppr_high).to eq "32.00"
|
151
|
+
expect(player.injury).to be_nil
|
152
|
+
expect(player.practice_status).to be_nil
|
153
|
+
expect(player.game_status).to be_nil
|
154
|
+
expect(player.last_update).to be_nil
|
155
|
+
end
|
180
156
|
|
157
|
+
it 'should retrieve weekly projections' do
|
158
|
+
player = FFNerd.weekly_projections('QB', 1).first
|
159
|
+
expect(player.week).to eq "1"
|
160
|
+
expect(player.player_id).to eq "14"
|
161
|
+
expect(player.position).to eq "QB"
|
162
|
+
expect(player.pass_att).to eq "39.0"
|
163
|
+
expect(player.pass_cmp).to eq "25.0"
|
164
|
+
expect(player.pass_yds).to eq "317.0"
|
165
|
+
expect(player.pass_td).to eq "2.0"
|
166
|
+
expect(player.pass_int).to eq "1.0"
|
167
|
+
expect(player.rush_att).to eq "1.0"
|
168
|
+
expect(player.rush_yds).to eq "1.0"
|
169
|
+
expect(player.rush_td).to eq "0.0"
|
170
|
+
expect(player.fumbles_lost).to eq "0.0"
|
171
|
+
expect(player.receptions).to eq "0.0"
|
172
|
+
expect(player.rec_yds).to eq "0.0"
|
173
|
+
expect(player.rec_td).to eq "0.0"
|
174
|
+
expect(player.fg).to eq "0.0"
|
175
|
+
expect(player.fg_att).to eq "0.0"
|
176
|
+
expect(player.xp).to eq "0.0"
|
177
|
+
expect(player.def_int).to eq "0.0"
|
178
|
+
expect(player.def_fr).to eq "0.0"
|
179
|
+
expect(player.def_ff).to eq "0.0"
|
180
|
+
expect(player.def_sack).to eq "0.0"
|
181
|
+
expect(player.def_td).to eq "0.0"
|
182
|
+
expect(player.def_ret_td).to eq "0.0"
|
183
|
+
expect(player.def_safety).to eq "0.0"
|
184
|
+
expect(player.def_pa).to eq "0.0"
|
185
|
+
expect(player.def_yds_allowed).to eq "0.0"
|
186
|
+
expect(player.display_name).to eq "Drew Brees"
|
187
|
+
expect(player.team).to eq "NO"
|
181
188
|
end
|
189
|
+
|
182
190
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'spec_helper.rb'
|
2
|
+
require 'fantasy_football_nerd/request.rb'
|
3
|
+
include Request
|
4
|
+
|
5
|
+
describe 'Request' do
|
6
|
+
it 'should create a service url without extras' do
|
7
|
+
url = service_url('draft-rankings', '12345')
|
8
|
+
expect(url).to eq 'http://www.fantasyfootballnerd.com/service/draft-rankings/json/12345'
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'should create a service url with extras' do
|
12
|
+
url = service_url('draft-rankings', '12345', 1)
|
13
|
+
expect(url).to eq 'http://www.fantasyfootballnerd.com/service/draft-rankings/json/12345/1'
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'vcr'
|
3
|
+
|
4
|
+
ENV['FFNERD_API_KEY'] = 'test'
|
5
|
+
|
6
|
+
VCR.configure do |c|
|
7
|
+
c.cassette_library_dir = "spec/vcr/cassettes"
|
8
|
+
c.hook_into :webmock
|
9
|
+
c.filter_sensitive_data('APIKEY') { ENV['FFNERD_API_KEY'] }
|
10
|
+
c.configure_rspec_metadata!
|
11
|
+
end
|
12
|
+
|
@@ -0,0 +1,331 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.fantasyfootballnerd.com/service/auction/json/test
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept-Encoding:
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
+
Accept:
|
13
|
+
- '*/*'
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Server:
|
22
|
+
- cloudflare-nginx
|
23
|
+
Date:
|
24
|
+
- Fri, 11 Jul 2014 22:41:45 GMT
|
25
|
+
Content-Type:
|
26
|
+
- application/json
|
27
|
+
Transfer-Encoding:
|
28
|
+
- chunked
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
Set-Cookie:
|
32
|
+
- PHPSESSID=2e4tk3ne2urvgqf4usjqgjts62; path=/
|
33
|
+
- __cfduid=de83c2565e8e38cdfd6d0829fbdaca8d61405118505682; expires=Mon, 23-Dec-2019
|
34
|
+
23:50:00 GMT; path=/; domain=.fantasyfootballnerd.com; HttpOnly
|
35
|
+
Expires:
|
36
|
+
- Thu, 19 Nov 1981 08:52:00 GMT
|
37
|
+
Cache-Control:
|
38
|
+
- must-revalidate, post-check=0, pre-check=0
|
39
|
+
Pragma:
|
40
|
+
- no-cache
|
41
|
+
X-Powered-By:
|
42
|
+
- PleskLin
|
43
|
+
Cf-Ray:
|
44
|
+
- 148882a48c7a09b8-ORD
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"AuctionValues":[{"playerId":"259","minPrice":"60","maxPrice":"66","avgPrice":"63","displayName":"Adrian
|
48
|
+
Peterson","team":"MIN","position":"RB"},{"playerId":"230","minPrice":"56","maxPrice":"58","avgPrice":"57","displayName":"Marshawn
|
49
|
+
Lynch","team":"SEA","position":"RB"},{"playerId":"917","minPrice":"55","maxPrice":"57","avgPrice":"56","displayName":"Arian
|
50
|
+
Foster","team":"HOU","position":"RB"},{"playerId":"269","minPrice":"52","maxPrice":"55","avgPrice":"54","displayName":"Ray
|
51
|
+
Rice","team":"BAL","position":"RB"},{"playerId":"1981","minPrice":"52","maxPrice":"53","avgPrice":"53","displayName":"Doug
|
52
|
+
Martin","team":"TB","position":"RB"},{"playerId":"145","minPrice":"49","maxPrice":"52","avgPrice":"51","displayName":"Jamaal
|
53
|
+
Charles","team":"KC","position":"RB"},{"playerId":"1136","minPrice":"49","maxPrice":"51","avgPrice":"50","displayName":"C.J.
|
54
|
+
Spiller","team":"BUF","position":"RB"},{"playerId":"454","minPrice":"47","maxPrice":"51","avgPrice":"49","displayName":"Calvin
|
55
|
+
Johnson","team":"DET","position":"WR"},{"playerId":"1879","minPrice":"43","maxPrice":"49","avgPrice":"46","displayName":"Trent
|
56
|
+
Richardson","team":"IND","position":"RB"},{"playerId":"810","minPrice":"45","maxPrice":"47","avgPrice":"46","displayName":"LeSean
|
57
|
+
McCoy","team":"PHI","position":"RB"},{"playerId":"1809","minPrice":"41","maxPrice":"48","avgPrice":"45","displayName":"Alfred
|
58
|
+
Morris","team":"WAS","position":"RB"},{"playerId":"1441","minPrice":"42","maxPrice":"45","avgPrice":"44","displayName":"A.J.
|
59
|
+
Green","team":"CIN","position":"WR"},{"playerId":"14","minPrice":"41","maxPrice":"45","avgPrice":"43","displayName":"Drew
|
60
|
+
Brees","team":"NO","position":"QB"},{"playerId":"87","minPrice":"43","maxPrice":"43","avgPrice":"43","displayName":"Aaron
|
61
|
+
Rodgers","team":"GB","position":"QB"},{"playerId":"1143","minPrice":"39","maxPrice":"45","avgPrice":"42","displayName":"Dez
|
62
|
+
Bryant","team":"DAL","position":"WR"},{"playerId":"480","minPrice":"37","maxPrice":"45","avgPrice":"41","displayName":"Brandon
|
63
|
+
Marshall","team":"CHI","position":"WR"},{"playerId":"66","minPrice":"37","maxPrice":"40","avgPrice":"39","displayName":"Peyton
|
64
|
+
Manning","team":"DEN","position":"QB"},{"playerId":"175","minPrice":"38","maxPrice":"39","avgPrice":"39","displayName":"Matt
|
65
|
+
Forte","team":"CHI","position":"RB"},{"playerId":"1423","minPrice":"33","maxPrice":"38","avgPrice":"36","displayName":"Stevan
|
66
|
+
Ridley","team":"NE","position":"RB"},{"playerId":"205","minPrice":"31","maxPrice":"40","avgPrice":"36","displayName":"Steven
|
67
|
+
Jackson","team":"ATL","position":"RB"},{"playerId":"1446","minPrice":"34","maxPrice":"38","avgPrice":"36","displayName":"Julio
|
68
|
+
Jones","team":"ATL","position":"WR"},{"playerId":"1172","minPrice":"32","maxPrice":"38","avgPrice":"35","displayName":"Demaryius
|
69
|
+
Thomas","team":"DEN","position":"WR"},{"playerId":"13","minPrice":"32","maxPrice":"37","avgPrice":"35","displayName":"Tom
|
70
|
+
Brady","team":"NE","position":"QB"},{"playerId":"208","minPrice":"33","maxPrice":"35","avgPrice":"34","displayName":"Chris
|
71
|
+
Johnson","team":"TEN","position":"RB"},{"playerId":"1187","minPrice":"29","maxPrice":"38","avgPrice":"34","displayName":"Jimmy
|
72
|
+
Graham","team":"NO","position":"TE"},{"playerId":"1398","minPrice":"28","maxPrice":"37","avgPrice":"33","displayName":"Cam
|
73
|
+
Newton","team":"CAR","position":"QB"},{"playerId":"180","minPrice":"28","maxPrice":"36","avgPrice":"32","displayName":"Frank
|
74
|
+
Gore","team":"SF","position":"RB"},{"playerId":"217","minPrice":"29","maxPrice":"30","avgPrice":"30","displayName":"Maurice
|
75
|
+
Jones-Drew","team":"JAC","position":"RB"},{"playerId":"1437","minPrice":"26","maxPrice":"33","avgPrice":"30","displayName":"Randall
|
76
|
+
Cobb","team":"GB","position":"WR"},{"playerId":"394","minPrice":"24","maxPrice":"35","avgPrice":"30","displayName":"Larry
|
77
|
+
Fitzgerald","team":"ARI","position":"WR"},{"playerId":"452","minPrice":"29","maxPrice":"31","avgPrice":"30","displayName":"Andre
|
78
|
+
Johnson","team":"HOU","position":"WR"},{"playerId":"444","minPrice":"28","maxPrice":"30","avgPrice":"29","displayName":"Vincent
|
79
|
+
Jackson","team":"TB","position":"WR"},{"playerId":"578","minPrice":"26","maxPrice":"31","avgPrice":"29","displayName":"Roddy
|
80
|
+
White","team":"ATL","position":"WR"},{"playerId":"1797","minPrice":"27","maxPrice":"29","avgPrice":"28","displayName":"David
|
81
|
+
Wilson","team":"NYG","position":"RB"},{"playerId":"235","minPrice":"24","maxPrice":"25","avgPrice":"25","displayName":"Darren
|
82
|
+
McFadden","team":"OAK","position":"RB"},{"playerId":"1394","minPrice":"17","maxPrice":"31","avgPrice":"24","displayName":"Colin
|
83
|
+
Kaepernick","team":"SF","position":"QB"},{"playerId":"1421","minPrice":"21","maxPrice":"24","avgPrice":"23","displayName":"DeMarco
|
84
|
+
Murray","team":"DAL","position":"RB"},{"playerId":"1262","minPrice":"22","maxPrice":"24","avgPrice":"23","displayName":"Victor
|
85
|
+
Cruz","team":"NYG","position":"WR"},{"playerId":"573","minPrice":"20","maxPrice":"22","avgPrice":"21","displayName":"Reggie
|
86
|
+
Wayne","team":"IND","position":"WR"},{"playerId":"2313","minPrice":"20","maxPrice":"22","avgPrice":"21","displayName":"Eddie
|
87
|
+
Lacy","team":"GB","position":"RB"},{"playerId":"93","minPrice":"18","maxPrice":"24","avgPrice":"21","displayName":"Matt
|
88
|
+
Ryan","team":"ATL","position":"QB"},{"playerId":"371","minPrice":"20","maxPrice":"22","avgPrice":"21","displayName":"Marques
|
89
|
+
Colston","team":"NO","position":"WR"},{"playerId":"576","minPrice":"16","maxPrice":"23","avgPrice":"20","displayName":"Wes
|
90
|
+
Welker","team":"DEN","position":"WR"},{"playerId":"1932","minPrice":"5","maxPrice":"34","avgPrice":"20","displayName":"Andrew
|
91
|
+
Luck","team":"IND","position":"QB"},{"playerId":"1806","minPrice":"14","maxPrice":"26","avgPrice":"20","displayName":"Robert
|
92
|
+
Griffin III","team":"WAS","position":"QB"},{"playerId":"139","minPrice":"12","maxPrice":"26","avgPrice":"19","displayName":"Reggie
|
93
|
+
Bush","team":"DET","position":"RB"},{"playerId":"285","minPrice":"17","maxPrice":"18","avgPrice":"18","displayName":"Darren
|
94
|
+
Sproles","team":"NO","position":"RB"},{"playerId":"863","minPrice":"17","maxPrice":"19","avgPrice":"18","displayName":"Mike
|
95
|
+
Wallace","team":"MIA","position":"WR"},{"playerId":"323","minPrice":"16","maxPrice":"18","avgPrice":"17","displayName":"Danny
|
96
|
+
Amendola","team":"NE","position":"WR"},{"playerId":"1189","minPrice":"10","maxPrice":"23","avgPrice":"17","displayName":"Rob
|
97
|
+
Gronkowski","team":"NE","position":"TE"},{"playerId":"853","minPrice":"15","maxPrice":"18","avgPrice":"17","displayName":"Hakeem
|
98
|
+
Nicks","team":"NYG","position":"WR"},{"playerId":"343","minPrice":"11","maxPrice":"18","avgPrice":"15","displayName":"Dwayne
|
99
|
+
Bowe","team":"KC","position":"WR"},{"playerId":"1142","minPrice":"9","maxPrice":"20","avgPrice":"15","displayName":"Antonio
|
100
|
+
Brown","team":"PIT","position":"WR"},{"playerId":"1761","minPrice":"12","maxPrice":"18","avgPrice":"15","displayName":"Lamar
|
101
|
+
Miller","team":"MIA","position":"RB"},{"playerId":"541","minPrice":"13","maxPrice":"17","avgPrice":"15","displayName":"Steve
|
102
|
+
Smith","team":"CAR","position":"WR"},{"playerId":"1227","minPrice":"9","maxPrice":"18","avgPrice":"14","displayName":"Chris
|
103
|
+
Ivory","team":"NYJ","position":"RB"},{"playerId":"2185","minPrice":"10","maxPrice":"17","avgPrice":"14","displayName":"Montee
|
104
|
+
Ball","team":"DEN","position":"RB"},{"playerId":"1847","minPrice":"7","maxPrice":"21","avgPrice":"14","displayName":"Russell
|
105
|
+
Wilson","team":"SEA","position":"QB"},{"playerId":"645","minPrice":"10","maxPrice":"18","avgPrice":"14","displayName":"Tony
|
106
|
+
Gonzalez","team":"ATL","position":"TE"},{"playerId":"793","minPrice":"7","maxPrice":"19","avgPrice":"13","displayName":"Matthew
|
107
|
+
Stafford","team":"DET","position":"QB"},{"playerId":"132","minPrice":"8","maxPrice":"18","avgPrice":"13","displayName":"Ahmad
|
108
|
+
Bradshaw","team":"IND","position":"RB"},{"playerId":"1146","minPrice":"11","maxPrice":"14","avgPrice":"13","displayName":"Eric
|
109
|
+
Decker","team":"DEN","position":"WR"},{"playerId":"1132","minPrice":"9","maxPrice":"14","avgPrice":"12","displayName":"Ryan
|
110
|
+
Mathews","team":"SD","position":"RB"},{"playerId":"89","minPrice":"4","maxPrice":"19","avgPrice":"12","displayName":"Tony
|
111
|
+
Romo","team":"DAL","position":"QB"},{"playerId":"404","minPrice":"7","maxPrice":"17","avgPrice":"12","displayName":"Pierre
|
112
|
+
Garcon","team":"WAS","position":"WR"},{"playerId":"733","minPrice":"8","maxPrice":"16","avgPrice":"12","displayName":"Jason
|
113
|
+
Witten","team":"DAL","position":"TE"},{"playerId":"502","minPrice":"8","maxPrice":"16","avgPrice":"12","displayName":"Jordy
|
114
|
+
Nelson","team":"GB","position":"WR"},{"playerId":"1458","minPrice":"6","maxPrice":"18","avgPrice":"12","displayName":"Torrey
|
115
|
+
Smith","team":"BAL","position":"WR"},{"playerId":"451","minPrice":"6","maxPrice":"14","avgPrice":"10","displayName":"Greg
|
116
|
+
Jennings","team":"MIN","position":"WR"},{"playerId":"441","minPrice":"7","maxPrice":"13","avgPrice":"10","displayName":"DeSean
|
117
|
+
Jackson","team":"PHI","position":"WR"},{"playerId":"460","minPrice":"10","maxPrice":"10","avgPrice":"10","displayName":"James
|
118
|
+
Jones","team":"GB","position":"WR"},{"playerId":"1457","minPrice":"7","maxPrice":"13","avgPrice":"10","displayName":"Cecil
|
119
|
+
Shorts","team":"JAC","position":"WR"},{"playerId":"626","minPrice":"6","maxPrice":"13","avgPrice":"10","displayName":"Vernon
|
120
|
+
Davis","team":"SF","position":"TE"},{"playerId":"310","minPrice":"7","maxPrice":"10","avgPrice":"9","displayName":"DeAngelo
|
121
|
+
Williams","team":"CAR","position":"RB"},{"playerId":"1937","minPrice":"4","maxPrice":"13","avgPrice":"9","displayName":"T.Y.
|
122
|
+
Hilton","team":"IND","position":"WR"},{"playerId":"456","minPrice":"5","maxPrice":"11","avgPrice":"8","displayName":"Steve
|
123
|
+
Johnson","team":"BUF","position":"WR"},{"playerId":"65","minPrice":"3","maxPrice":"12","avgPrice":"8","displayName":"Eli
|
124
|
+
Manning","team":"NYG","position":"QB"},{"playerId":"2257","minPrice":"5","maxPrice":"10","avgPrice":"8","displayName":"Tavon
|
125
|
+
Austin","team":"STL","position":"WR"},{"playerId":"240","minPrice":"4","maxPrice":"11","avgPrice":"8","displayName":"Rashard
|
126
|
+
Mendenhall","team":"ARI","position":"RB"},{"playerId":"2273","minPrice":"6","maxPrice":"9","avgPrice":"8","displayName":"Giovani
|
127
|
+
Bernard","team":"CIN","position":"RB"},{"playerId":"684","minPrice":"3","maxPrice":"10","avgPrice":"7","displayName":"Greg
|
128
|
+
Olsen","team":"CAR","position":"TE"},{"playerId":"1467","minPrice":"4","maxPrice":"9","avgPrice":"7","displayName":"Kyle
|
129
|
+
Rudolph","team":"MIN","position":"TE"},{"playerId":"1430","minPrice":"4","maxPrice":"10","avgPrice":"7","displayName":"Shane
|
130
|
+
Vereen","team":"NE","position":"RB"},{"playerId":"185","minPrice":"5","maxPrice":"9","avgPrice":"7","displayName":"BenJarvus
|
131
|
+
Green-Ellis","team":"CIN","position":"RB"},{"playerId":"1857","minPrice":"4","maxPrice":"10","avgPrice":"7","displayName":"Daryl
|
132
|
+
Richardson","team":"STL","position":"RB"},{"playerId":"105","minPrice":"2","maxPrice":"12","avgPrice":"7","displayName":"Michael
|
133
|
+
Vick","team":"PHI","position":"QB"},{"playerId":"1856","minPrice":"3","maxPrice":"8","avgPrice":"6","displayName":"Isaiah
|
134
|
+
Pead","team":"STL","position":"RB"},{"playerId":"328","minPrice":"4","maxPrice":"8","avgPrice":"6","displayName":"Miles
|
135
|
+
Austin","team":"DAL","position":"WR"},{"playerId":"1178","minPrice":"3","maxPrice":"9","avgPrice":"6","displayName":"Mike
|
136
|
+
Williams","team":"TB","position":"WR"},{"playerId":"341","minPrice":"5","maxPrice":"7","avgPrice":"6","displayName":"Anquan
|
137
|
+
Boldin","team":"SF","position":"WR"},{"playerId":"825","minPrice":"2","maxPrice":"7","avgPrice":"5","displayName":"Kenny
|
138
|
+
Britt","team":"TEN","position":"WR"},{"playerId":"622","minPrice":"3","maxPrice":"7","avgPrice":"5","displayName":"Owen
|
139
|
+
Daniels","team":"HOU","position":"TE"},{"playerId":"637","minPrice":"1","maxPrice":"9","avgPrice":"5","displayName":"Jermichael
|
140
|
+
Finley","team":"GB","position":"TE"},{"playerId":"493","minPrice":"3","maxPrice":"7","avgPrice":"5","displayName":"Lance
|
141
|
+
Moore","team":"NO","position":"WR"},{"playerId":"519","minPrice":"4","maxPrice":"6","avgPrice":"5","displayName":"Sidney
|
142
|
+
Rice","team":"SEA","position":"WR"},{"playerId":"1415","minPrice":"3","maxPrice":"7","avgPrice":"5","displayName":"Mark
|
143
|
+
Ingram","team":"NO","position":"RB"},{"playerId":"88","minPrice":"2","maxPrice":"8","avgPrice":"5","displayName":"Ben
|
144
|
+
Roethlisberger","team":"PIT","position":"QB"},{"playerId":"1391","minPrice":"0","maxPrice":"10","avgPrice":"5","displayName":"Andy
|
145
|
+
Dalton","team":"CIN","position":"QB"},{"playerId":"882","minPrice":"2","maxPrice":"8","avgPrice":"5","displayName":"Brandon
|
146
|
+
Myers","team":"NYG","position":"TE"},{"playerId":"1168","minPrice":"2","maxPrice":"5","avgPrice":"4","displayName":"Emmanuel
|
147
|
+
Sanders","team":"PIT","position":"WR"},{"playerId":"1933","minPrice":"3","maxPrice":"4","avgPrice":"4","displayName":"Vick
|
148
|
+
Ballard","team":"IND","position":"RB"},{"playerId":"204","minPrice":"2","maxPrice":"5","avgPrice":"4","displayName":"Fred
|
149
|
+
Jackson","team":"BUF","position":"RB"},{"playerId":"1895","minPrice":"2","maxPrice":"5","avgPrice":"4","displayName":"Alshon
|
150
|
+
Jeffery","team":"CHI","position":"WR"},{"playerId":"35","minPrice":"1","maxPrice":"6","avgPrice":"4","displayName":"Joe
|
151
|
+
Flacco","team":"BAL","position":"QB"},{"playerId":"1866","minPrice":"2","maxPrice":"5","avgPrice":"4","displayName":"Bernard
|
152
|
+
Pierce","team":"BAL","position":"RB"},{"playerId":"1961","minPrice":"1","maxPrice":"6","avgPrice":"4","displayName":"Kendall
|
153
|
+
Wright","team":"TEN","position":"WR"},{"playerId":"643","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Antonio
|
154
|
+
Gates","team":"SD","position":"TE"},{"playerId":"933","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Isaac
|
155
|
+
Redman","team":"PIT","position":"RB"},{"playerId":"788","minPrice":"0","maxPrice":"8","avgPrice":"4","displayName":"Josh
|
156
|
+
Freeman","team":"MIN","position":"QB"},{"playerId":"2092","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Josh
|
157
|
+
Gordon","team":"CLE","position":"WR"},{"playerId":"872","minPrice":"1","maxPrice":"7","avgPrice":"4","displayName":"Jared
|
158
|
+
Cook","team":"STL","position":"TE"},{"playerId":"1802","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Bryce
|
159
|
+
Brown","team":"PHI","position":"RB"},{"playerId":"1859","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Chris
|
160
|
+
Givens","team":"STL","position":"WR"},{"playerId":"1138","minPrice":"2","maxPrice":"6","avgPrice":"4","displayName":"Ben
|
161
|
+
Tate","team":"HOU","position":"RB"},{"playerId":"1698","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Mikel
|
162
|
+
Leshoure","team":"DET","position":"RB"},{"playerId":"2142","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Kenbrell
|
163
|
+
Thompkins","team":"NE","position":"WR"},{"playerId":"602","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Martellus
|
164
|
+
Bennett","team":"CHI","position":"TE"},{"playerId":"313","minPrice":"0","maxPrice":"5","avgPrice":"3","displayName":"Danny
|
165
|
+
Woodhead","team":"SD","position":"RB"},{"playerId":"79","minPrice":"0","maxPrice":"5","avgPrice":"3","displayName":"Carson
|
166
|
+
Palmer","team":"ARI","position":"QB"},{"playerId":"28","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Jay
|
167
|
+
Cutler","team":"CHI","position":"QB"},{"playerId":"1901","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Ryan
|
168
|
+
Broyles","team":"DET","position":"WR"},{"playerId":"94","minPrice":"0","maxPrice":"5","avgPrice":"3","displayName":"Matt
|
169
|
+
Schaub","team":"HOU","position":"QB"},{"playerId":"888","minPrice":"1","maxPrice":"4","avgPrice":"3","displayName":"Brandon
|
170
|
+
Pettigrew","team":"DET","position":"TE"},{"playerId":"1435","minPrice":"2","maxPrice":"3","avgPrice":"3","displayName":"Vincent
|
171
|
+
Brown","team":"SD","position":"WR"},{"playerId":"1188","minPrice":"0","maxPrice":"5","avgPrice":"3","displayName":"Jermaine
|
172
|
+
Gresham","team":"CIN","position":"TE"},{"playerId":"1815","minPrice":"1","maxPrice":"5","avgPrice":"3","displayName":"Ronnie
|
173
|
+
Hillman","team":"DEN","position":"RB"},{"playerId":"1696","minPrice":"0","maxPrice":"6","avgPrice":"3","displayName":"Terrelle
|
174
|
+
Pryor","team":"OAK","position":"QB"},{"playerId":"2338","minPrice":"1","maxPrice":"5","avgPrice":"3","displayName":"DeAndre
|
175
|
+
Hopkins","team":"HOU","position":"WR"},{"playerId":"1461","minPrice":"0","maxPrice":"6","avgPrice":"3","displayName":"Jordan
|
176
|
+
Cameron","team":"CLE","position":"TE"},{"playerId":"1836","minPrice":"1","maxPrice":"5","avgPrice":"3","displayName":"Michael
|
177
|
+
Floyd","team":"ARI","position":"WR"},{"playerId":"1450","minPrice":"2","maxPrice":"4","avgPrice":"3","displayName":"Denarius
|
178
|
+
Moore","team":"OAK","position":"WR"},{"playerId":"1170","minPrice":"1","maxPrice":"5","avgPrice":"3","displayName":"Golden
|
179
|
+
Tate","team":"SEA","position":"WR"},{"playerId":"292","minPrice":"0","maxPrice":"5","avgPrice":"3","displayName":"Pierre
|
180
|
+
Thomas","team":"NO","position":"RB"},{"playerId":"1781","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Stephen
|
181
|
+
Hill","team":"NYJ","position":"WR"},{"playerId":"1159","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Brandon
|
182
|
+
LaFell","team":"CAR","position":"WR"},{"playerId":"1875","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Mohamed
|
183
|
+
Sanu","team":"CIN","position":"WR"},{"playerId":"97","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Alex
|
184
|
+
Smith","team":"KC","position":"QB"},{"playerId":"2144","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Zach
|
185
|
+
Sudfeld","team":"NYJ","position":"TE"},{"playerId":"2139","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Aaron
|
186
|
+
Dobson","team":"NE","position":"WR"},{"playerId":"1758","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Ryan
|
187
|
+
Tannehill","team":"MIA","position":"QB"},{"playerId":"1925","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Blair
|
188
|
+
Walsh","team":"MIN","position":"K"},{"playerId":"752","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Stephen
|
189
|
+
Gostkowski","team":"NE","position":"K"},{"playerId":"769","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Matt
|
190
|
+
Prater","team":"DEN","position":"K"},{"playerId":"743","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Matt
|
191
|
+
Bryant","team":"ATL","position":"K"},{"playerId":"1422","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Bilal
|
192
|
+
Powell","team":"NYJ","position":"RB"},{"playerId":"812","minPrice":"1","maxPrice":"2","avgPrice":"2","displayName":"Knowshon
|
193
|
+
Moreno","team":"DEN","position":"RB"},{"playerId":"2328","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Cordarrelle
|
194
|
+
Patterson","team":"MIN","position":"WR"},{"playerId":"841","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Darrius
|
195
|
+
Heyward-Bey","team":"IND","position":"WR"},{"playerId":"1947","minPrice":"0","maxPrice":"4","avgPrice":"2","displayName":"Justin
|
196
|
+
Blackmon","team":"JAC","position":"WR"},{"playerId":"624","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Fred
|
197
|
+
Davis","team":"WAS","position":"TE"},{"playerId":"839","minPrice":"0","maxPrice":"4","avgPrice":"2","displayName":"Brian
|
198
|
+
Hartline","team":"MIA","position":"WR"},{"playerId":"1861","minPrice":"2","maxPrice":"2","avgPrice":"2","displayName":"Brian
|
199
|
+
Quick","team":"STL","position":"WR"},{"playerId":"2312","minPrice":"0","maxPrice":"4","avgPrice":"2","displayName":"Johnathan
|
200
|
+
Franklin","team":"GB","position":"RB"},{"playerId":"395","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Malcom
|
201
|
+
Floyd","team":"SD","position":"WR"},{"playerId":"1799","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Rueben
|
202
|
+
Randle","team":"NYG","position":"WR"},{"playerId":"1166","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Andre
|
203
|
+
Roberts","team":"ARI","position":"WR"},{"playerId":"1424","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Jacquizz
|
204
|
+
Rodgers","team":"ATL","position":"RB"},{"playerId":"2289","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Le''Veon
|
205
|
+
Bell","team":"PIT","position":"RB"},{"playerId":"803","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Shonn
|
206
|
+
Greene","team":"TEN","position":"RB"},{"playerId":"1109","minPrice":"1","maxPrice":"3","avgPrice":"2","displayName":"Sam
|
207
|
+
Bradford","team":"STL","position":"QB"},{"playerId":"1448","minPrice":"0","maxPrice":"3","avgPrice":"2","displayName":"Greg
|
208
|
+
Little","team":"CLE","position":"WR"},{"playerId":"287","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Jonathan
|
209
|
+
Stewart","team":"CAR","position":"RB"},{"playerId":"1414","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Kendall
|
210
|
+
Hunter","team":"SF","position":"RB"},{"playerId":"1877","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Brandon
|
211
|
+
Weeden","team":"CLE","position":"QB"},{"playerId":"1930","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Randy
|
212
|
+
Bullock","team":"HOU","position":"K"},{"playerId":"138","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Michael
|
213
|
+
Bush","team":"CHI","position":"RB"},{"playerId":"571","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Nate
|
214
|
+
Washington","team":"TEN","position":"WR"},{"playerId":"2122","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Robert
|
215
|
+
Woods","team":"BUF","position":"WR"},{"playerId":"1839","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"LaMichael
|
216
|
+
James","team":"SF","position":"RB"},{"playerId":"1399","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Christian
|
217
|
+
Ponder","team":"MIN","position":"QB"},{"playerId":"1127","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Toby
|
218
|
+
Gerhart","team":"MIN","position":"RB"},{"playerId":"613","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Scott
|
219
|
+
Chandler","team":"BUF","position":"TE"},{"playerId":"1940","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Dwayne
|
220
|
+
Allen","team":"IND","position":"TE"},{"playerId":"355","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Nate
|
221
|
+
Burleson","team":"DET","position":"WR"},{"playerId":"1432","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Ryan
|
222
|
+
Williams","team":"ARI","position":"RB"},{"playerId":"1393","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Blaine
|
223
|
+
Gabbert","team":"JAC","position":"QB"},{"playerId":"2157","minPrice":"0","maxPrice":"1","avgPrice":"1","displayName":"Joseph
|
224
|
+
Randle","team":"DAL","position":"RB"},{"playerId":"86","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Philip
|
225
|
+
Rivers","team":"SD","position":"QB"},{"playerId":"759","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Sebastian
|
226
|
+
Janikowski","team":"OAK","position":"K"},{"playerId":"1413","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Roy
|
227
|
+
Helu","team":"WAS","position":"RB"},{"playerId":"2244","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Christine
|
228
|
+
Michael","team":"SEA","position":"RB"},{"playerId":"1220","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Joique
|
229
|
+
Bell","team":"DET","position":"RB"},{"playerId":"431","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Santonio
|
230
|
+
Holmes","team":"NYJ","position":"WR"},{"playerId":"294","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Mike
|
231
|
+
Tolbert","team":"CAR","position":"RB"},{"playerId":"612","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Brent
|
232
|
+
Celek","team":"PHI","position":"TE"},{"playerId":"1395","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Jake
|
233
|
+
Locker","team":"TEN","position":"QB"},{"playerId":"1428","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Daniel
|
234
|
+
Thomas","team":"MIA","position":"RB"},{"playerId":"2079","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Justin
|
235
|
+
Tucker","team":"BAL","position":"K"},{"playerId":"741","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Josh
|
236
|
+
Brown","team":"NYG","position":"K"},{"playerId":"738","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"David
|
237
|
+
Akers","team":"DET","position":"K"},{"playerId":"748","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Phil
|
238
|
+
Dawson","team":"SF","position":"K"},{"playerId":"797","minPrice":"1","maxPrice":"1","avgPrice":"1","displayName":"Andre
|
239
|
+
Brown","team":"NYG","position":"RB"},{"playerId":"1182","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Ed
|
240
|
+
Dickson","team":"BAL","position":"TE"},{"playerId":"675","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"Heath
|
241
|
+
Miller","team":"PIT","position":"TE"},{"playerId":"2114","minPrice":"0","maxPrice":"2","avgPrice":"1","displayName":"EJ
|
242
|
+
Manuel","team":"BUF","position":"QB"},{"playerId":"1865","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Greg
|
243
|
+
Zuerlein","team":"STL","position":"K"},{"playerId":"267","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Marcel
|
244
|
+
Reece","team":"OAK","position":"RB"},{"playerId":"174","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Justin
|
245
|
+
Forsett","team":"JAC","position":"RB"},{"playerId":"1447","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jeremy
|
246
|
+
Kerley","team":"NYJ","position":"WR"},{"playerId":"1941","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Coby
|
247
|
+
Fleener","team":"IND","position":"TE"},{"playerId":"1785","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Lance
|
248
|
+
Dunbar","team":"DAL","position":"RB"},{"playerId":"1471","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Julius
|
249
|
+
Thomas","team":"DEN","position":"TE"},{"playerId":"2192","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Knile
|
250
|
+
Davis","team":"KC","position":"RB"},{"playerId":"1685","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Dan
|
251
|
+
Bailey","team":"DAL","position":"K"},{"playerId":"2334","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Cierre
|
252
|
+
Wood","team":"HOU","position":"RB"},{"playerId":"330","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Donnie
|
253
|
+
Avery","team":"KC","position":"WR"},{"playerId":"2279","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Tyler
|
254
|
+
Eifert","team":"CIN","position":"TE"},{"playerId":"459","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jacoby
|
255
|
+
Jones","team":"BAL","position":"WR"},{"playerId":"2125","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Mike
|
256
|
+
Gillislee","team":"MIA","position":"RB"},{"playerId":"220","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"John
|
257
|
+
Kuhn","team":"GB","position":"RB"},{"playerId":"805","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Rashad
|
258
|
+
Jennings","team":"OAK","position":"RB"},{"playerId":"1849","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Robert
|
259
|
+
Turbin","team":"SEA","position":"RB"},{"playerId":"836","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Brandon
|
260
|
+
Gibson","team":"MIA","position":"WR"},{"playerId":"832","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Julian
|
261
|
+
Edelman","team":"NE","position":"WR"},{"playerId":"1923","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jarius
|
262
|
+
Wright","team":"MIN","position":"WR"},{"playerId":"1829","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Rod
|
263
|
+
Streater","team":"OAK","position":"WR"},{"playerId":"2215","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Keenan
|
264
|
+
Allen","team":"SD","position":"WR"},{"playerId":"526","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Eddie
|
265
|
+
Royal","team":"SD","position":"WR"},{"playerId":"1145","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Riley
|
266
|
+
Cooper","team":"PHI","position":"WR"},{"playerId":"813","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Chris
|
267
|
+
Ogbonnaya","team":"CLE","position":"RB"},{"playerId":"536","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jerome
|
268
|
+
Simpson","team":"MIN","position":"WR"},{"playerId":"338","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Davone
|
269
|
+
Bess","team":"CLE","position":"WR"},{"playerId":"329","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jason
|
270
|
+
Avant","team":"PHI","position":"WR"},{"playerId":"1549","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Doug
|
271
|
+
Baldwin","team":"SEA","position":"WR"},{"playerId":"497","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Santana
|
272
|
+
Moss","team":"WAS","position":"WR"},{"playerId":"2388","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Kenny
|
273
|
+
Stills","team":"NO","position":"WR"},{"playerId":"676","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Zach
|
274
|
+
Miller","team":"SEA","position":"TE"},{"playerId":"798","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Donald
|
275
|
+
Brown","team":"IND","position":"RB"},{"playerId":"2254","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Zac
|
276
|
+
Stacy","team":"STL","position":"RB"},{"playerId":"1996","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Chris
|
277
|
+
Polk","team":"PHI","position":"RB"},{"playerId":"134","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Ronnie
|
278
|
+
Brown","team":"SD","position":"RB"},{"playerId":"817","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"LaRod
|
279
|
+
Stephens-Howling","team":"PIT","position":"RB"},{"playerId":"212","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Felix
|
280
|
+
Jones","team":"PIT","position":"RB"},{"playerId":"2361","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Justin
|
281
|
+
Hunter","team":"TEN","position":"WR"},{"playerId":"2221","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Andre
|
282
|
+
Ellington","team":"ARI","position":"RB"},{"playerId":"1429","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jordan
|
283
|
+
Todman","team":"JAC","position":"RB"},{"playerId":"1221","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"LeGarrette
|
284
|
+
Blount","team":"NE","position":"RB"},{"playerId":"2353","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Denard
|
285
|
+
Robinson","team":"JAC","position":"WR"},{"playerId":"1161","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Dexter
|
286
|
+
McCluster","team":"KC","position":"WR"},{"playerId":"840","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Percy
|
287
|
+
Harvin","team":"SEA","position":"WR"},{"playerId":"2293","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Markus
|
288
|
+
Wheaton","team":"PIT","position":"WR"},{"playerId":"1769","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Brandon
|
289
|
+
Bolden","team":"NE","position":"RB"},{"playerId":"1442","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Leonard
|
290
|
+
Hankerson","team":"WAS","position":"WR"},{"playerId":"495","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Josh
|
291
|
+
Morgan","team":"WAS","position":"WR"},{"playerId":"615","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Dallas
|
292
|
+
Clark","team":"BAL","position":"TE"},{"playerId":"2274","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Rex
|
293
|
+
Burkhead","team":"CIN","position":"RB"},{"playerId":"2241","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Quinton
|
294
|
+
Patton","team":"SF","position":"WR"},{"playerId":"283","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jason
|
295
|
+
Snelling","team":"ATL","position":"RB"},{"playerId":"147","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Tashard
|
296
|
+
Choice","team":"BUF","position":"RB"},{"playerId":"2393","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Mike
|
297
|
+
James","team":"TB","position":"RB"},{"playerId":"1465","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Rob
|
298
|
+
Housler","team":"ARI","position":"TE"},{"playerId":"2160","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Terrance
|
299
|
+
Williams","team":"DAL","position":"WR"},{"playerId":"1137","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"James
|
300
|
+
Starks","team":"GB","position":"RB"},{"playerId":"1538","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Phillip
|
301
|
+
Tanner","team":"DAL","position":"RB"},{"playerId":"1151","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jacoby
|
302
|
+
Ford","team":"OAK","position":"WR"},{"playerId":"2173","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Zach
|
303
|
+
Ertz","team":"PHI","position":"TE"},{"playerId":"1756","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"T.J.
|
304
|
+
Graham","team":"BUF","position":"WR"},{"playerId":"830","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Michael
|
305
|
+
Crabtree","team":"SF","position":"WR"},{"playerId":"753","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Robbie
|
306
|
+
Gould","team":"CHI","position":"K"},{"playerId":"234","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Le''Ron
|
307
|
+
McClain","team":"SD","position":"RB"},{"playerId":"2146","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Geno
|
308
|
+
Smith","team":"NYJ","position":"QB"},{"playerId":"2378","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Kenjon
|
309
|
+
Barner","team":"CAR","position":"RB"},{"playerId":"1818","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Cyrus
|
310
|
+
Gray","team":"KC","position":"RB"},{"playerId":"2222","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Stepfan
|
311
|
+
Taylor","team":"ARI","position":"RB"},{"playerId":"1426","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Da''Rel
|
312
|
+
Scott","team":"NYG","position":"RB"},{"playerId":"1286","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Marlon
|
313
|
+
Moore","team":"MIA","position":"WR"},{"playerId":"668","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Marcedes
|
314
|
+
Lewis","team":"JAC","position":"TE"},{"playerId":"1410","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Alex
|
315
|
+
Green","team":"NYJ","position":"RB"},{"playerId":"758","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Steven
|
316
|
+
Hauschka","team":"SEA","position":"K"},{"playerId":"2034","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Bobby
|
317
|
+
Rainey","team":"TB","position":"RB"},{"playerId":"384","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Harry
|
318
|
+
Douglas","team":"ATL","position":"WR"},{"playerId":"757","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Garrett
|
319
|
+
Hartley","team":"NO","position":"K"},{"playerId":"2357","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Ace
|
320
|
+
Sanders","team":"JAC","position":"WR"},{"playerId":"225","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Brian
|
321
|
+
Leonard","team":"TB","position":"RB"},{"playerId":"1186","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Garrett
|
322
|
+
Graham","team":"HOU","position":"TE"},{"playerId":"802","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Mike
|
323
|
+
Goodson","team":"NYJ","position":"RB"},{"playerId":"768","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Mike
|
324
|
+
Nugent","team":"CIN","position":"K"},{"playerId":"1434","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Jon
|
325
|
+
Baldwin","team":"SF","position":"WR"},{"playerId":"564","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Delanie
|
326
|
+
Walker","team":"TEN","position":"TE"},{"playerId":"2295","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Michael
|
327
|
+
Ford","team":"CHI","position":"RB"},{"playerId":"1385","minPrice":"0","maxPrice":"0","avgPrice":"0","displayName":"Andrew
|
328
|
+
Hawkins","team":"CIN","position":"WR"}]}'
|
329
|
+
http_version:
|
330
|
+
recorded_at: Fri, 11 Jul 2014 22:41:45 GMT
|
331
|
+
recorded_with: VCR 2.9.2
|