Questions tagged [espn]

ESPN.com is an online platform for multiple sports news, statistics, team information, and player information. The ESPN.com API allows developers to access and integrate the data of ESPN.com with other applications and to create new applications.

ESPN.com is an online platform for multiple sports news, statistics, team information, and player information. ESPN.com offers sports scores, standings, and other statistics for a variety of sports.

The ESPN.com API allows developers to access and integrate the data of ESPN.com with other applications and to create new applications. Some example API methods include retrieving sports information, team information, and league information. Interested developers should sign up here for an API key: developer.espn.com/member/register

NOTE:

The public api is retired on December 2014. See ESPN's Public Announcement here: http://www.espn.com/static/apis/devcenter/blog/read/publicretirement.html

56 questions
0
votes
0 answers

Trying to Log In to ESPN Using Python Requests

I am trying to get an application set up so that I can scrape Fantasy Football data from my League on the ESPN Fantasy website. In order to make this function, I am trying to learn how to sign into a website using the Requests module on Python, but…
kevinvi8
  • 191
  • 1
  • 10
0
votes
2 answers

ESPN Gamecast Python Webscraping

I am having trouble scraping ESPN Gamecast links from the espn scoreboard webpage. I have tried: site = "https://www.espn.com/mlb/scoreboard" html = requests.get(site).text soup = BeautifulSoup(html, 'html.parser').find_all('a') links =…
Stephen
  • 3
  • 3
0
votes
1 answer

How can I pull player stats from a tabbed ESPN table?

I've been reading through a couple of the other useful guides on pulling player and match data from ESPN using R, however I have come across a problem with tabbed tables. As shown here on the player stats for a recent rugby game, the player…
0
votes
1 answer

Using BeautifulSoup to Scrape ESPN Fantasy Football

I've looked around at a lot of examples scraping ESPN fantasy football leagues. I am very new to web-scraping, but have looked into this extensively before posting because of that. I am having trouble accessing my league and getting anything useful…
Feil Narley
  • 3
  • 1
  • 3
0
votes
2 answers

ESPN mobile site, jquery?

Does anyone know what ESPN mobile is using for their interaction, jquery? It looks like they are using CSS3 for browsers that support it, as it downgrades for unsupported browsers to basic colors and non-rounded corners.
Xtian
  • 3,535
  • 11
  • 55
  • 91
0
votes
2 answers

BeautifulSoup ESPN: Scraping Sports Score but .findAll gives an empty ResultSet. How to pull proper info?

Beginning Python and BeautifulSoup user here. I'm trying to scrape some sports score from ESPN website but the returns are empty. Sample Target: ESPN Website > NBA > Scores I want to get some info such as Team Name, Score, Record, and…
uclaastro
  • 593
  • 1
  • 6
  • 17
0
votes
1 answer

Not able to connect espn developers account for access key

I am trying to access http://developer.espn.com/member/register site for ESPN API key generation. But I think it is blocked and redirecting to documentations page. Please help.
Tushky
  • 1
  • 1
  • 5
0
votes
1 answer

Using JSOUP to extract data from HTML tables

So I'm currently trying to scrape all the data from (http://games.espn.go.com/ffl/leaders?) and store it. The current approach I have is just ripping the site them extracting all data from it. However, after seeing how inefficient this is, I started…
0
votes
1 answer

403 error when calling an API, except I haven't exceeded my amount of call per day

I just got an ESPN API key, and have just started to try to use it. However, when I try to call it, I get a 403 error, which means the servers think I have already called the data too many times today. To clarify, my limit is 7,500 calls per day. My…
GNP284
  • 31
  • 6
0
votes
1 answer

596 Service not found while using ESPN API

I am using this API to consume a ESPN API: http://api.espn.com/v1/now?apikey=d4skkma8kt2ac8tqbusz38w6 In Node.js, using node-curl library, my snippet looks like this: var Curl = require('node-curl/lib/Curl') curl.setopt('URL',…
Pradeep Simha
  • 17,683
  • 18
  • 56
  • 107
0
votes
1 answer

403 ESPN Error, Account Inactive

I am trying some basic stuff with espn's API and it doensn't matter what I do, I get this same thing { "status": "error", "code": 403, "message" : "Account Inactive" } The link I used…
Chris Jones
  • 662
  • 2
  • 10
  • 23
0
votes
2 answers

How can I get ESPN Developer to return more golfers?

I just created an account with ESPN Developer, and I'm trying to get a list of all the Professional Golfers. I made the following request: http://api.espn.com/v1/sports/golf/athletes?&apikey=[mykey] Unfortunately, the browser only shows a handful of…
CaliCoder
  • 23
  • 2
0
votes
1 answer

ESPN Sports API request specific leagues

Is there any way using the Sports API to return a selection of multiple, but not all, leagues? For example, the Request URI is http://api.espn.com/v1/sports/?apikey=x which allows a call for all leagues -OR- the Request URI is…
Realinstomp
  • 532
  • 2
  • 13
  • 30
0
votes
2 answers

ESPN API - How can I retrieve college basketball conferences using the Teams API?

The support forums on ESPN.com recommend using Stack Overflow with the ESPN tag. That's why I'm here. I'm trying to obtain a list of all NCAA college basketball teams using ESPN's Teams API. I started with this GET…
nomad
  • 1,699
  • 5
  • 21
  • 35
0
votes
1 answer

403 Forbidden resposnse from a GET request to http://api.espn.com/v1/sports/news/6277112

I have problem with the ESPN API: I have an API key, and sent a query to the address http://api.espn.com/v1/sports/news/1581816?region=GB, which included my API key in the parameters. I received 403 forbidden response: with this JSON { "status":…
Paolo
  • 1
  • 1