Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am in search of NFL data, mostly stats relating to Teams and Players. I have searched to the end of the internet and found nothing.

Anyone know of a site that offers up free data? Obviously I would love a database, but I would be willing to accept anything from odata, web services, text, api, screen scraping, csv, etc.

share|improve this question
Is there a better place to ask this? Why is this off topic exactly? – Nix Aug 5 '11 at 15:35
1  
"the end of the Internet" -- That's a sad, deprived place to be looking for answers. – ckittel Aug 6 '11 at 1:40
4  
Good and interesting question. I think data acquisition is a fine programming topic: a lot of programming work (databases, statistical models, visualization) can't be done without data. – Iterator Aug 8 '11 at 19:58

closed as off topic by Andrew Barber May 17 at 5:05

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

6 Answers

up vote 8 down vote accepted

Sure, DatabseFootball. From my own use of this Site, it seems to me that the all of the necessary data is sitting in their backend persist layer, though they have not yet populated all of the views (in other words, some of the links to drilldown are inactive.

Again though their database seems to be comprehensive. For instance, you can go to the Players Page, and search for a given NFL player by last name, college, or professional team. For instance, to find Earl Campell's career stats, you click "C" from that Page, then scroll down until you get to Earl Campbell, which when clicked will give you his career stats, aggregated in various ways, e.g., by year.

From their homepage you can access the data by Team, Year, Draft, Leader Boards for Players by Category, and so on.

The site Pro-Football-Reference is probably the most widely used among Fantasy Football addicts; i suspect that's because it is the most query-friendly. In addition, this is the only site i am aware of that allows you to quickly retrieve the data you want in csv format.

It works pretty much as you would expect--you enter "queries" by making a selection from each of the dozen or so drop-down menus on one of the the Search Form pages. A query is built from those selections and a result set returned as a data grid or HTML table, which you can download as a csv file. To use this Site, as far as i know, cost nothing.

There's another site i am aware of that provides free NFL data, FootballOutsiders. Their niche is innovative statistics, e.g., novel metrics (and they claim, more insightful/relevant) to replace or supplement traditional metrics like QB Efficiency Rating.

share|improve this answer
The Pro-Football-Reference site is a good one. I think it was build after the success of their baseball reference site. – LarsTech Dec 23 '11 at 15:53

If you need the raw data (xml, csv, etc) - then your best bet is probably to buy it from http://www.nfldata.com.

Their data isn't free, nor is it especially cheap, but from what I understand, it is complete, accurate, up-to-date and they support it.

Hope that helps.

share|improve this answer

Here are some links: Here DatabaseSports you can find a lot of information and many Sports database. And here NFL Football Spreads you can look for all the spreads, schedule, articles and more about the NFL.

share|improve this answer

If you're looking for play-by-play data (not pre-aggregated), you can find it as CSVs from Advanced NFL Stats at http://www.advancednflstats.com/2010/04/play-by-play-data.html. Has 2002 - 2012 (regular season).

share|improve this answer

Its been a while, but finally a free ESPN API!

V1 is out and its a little rough on the edges but it can be leveraged. I had to write some code to scrape a couple espn team pages to get the pool of players, but its working. And can only be improved... its not possible to make it any worse.

share|improve this answer
Just played with this API. It's exactly what I need, but I don't have access to any useful data. The Public API just lets you do some basic uninteresting function calls. :/ I can't get a list of players on a specific team, and I can't get any individual players stats... might just have to crawl their site. :/ – JustinDanielson Dec 18 '12 at 5:40

Try http://armchairanalysis.com

They offer 560,000 plays covering 13 years. Includes player, team and game data....

share|improve this answer
1  
looking for free ones... – Nix Apr 3 at 21:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.