This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sports":[ | |
{ | |
"name":"basketball", | |
"id":40, | |
"leagues":[ | |
{ | |
"name":"NCAA Basketball", | |
"abbreviation":"mens-college-basketball", | |
"id":41, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<response> | |
<sports> | |
<sportsItem> | |
<name>basketball</name> | |
<id>40</id> | |
<leagues> | |
<leaguesItem> | |
<name>NCAA Basketball</name> | |
<abbreviation>mens-college-basketball</abbreviation> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example JSONP request with jQuery | |
$.ajax({ | |
url: "http://api.espn.com/v1/sports/news/notes", | |
data: { | |
// enter your developer api key here | |
apikey: "{api key}", | |
// the type of data you're expecting back from the api | |
_accept: "application/json" | |
}, | |
dataType: "jsonp", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"timestamp":"2012-11-21T16:40:18Z", | |
"resultsOffset":0, | |
"status":"success", | |
"resultsLimit":5, | |
"resultsCount":768, | |
"notes":[ | |
{ | |
"headline":"Cowboys Great Against Rookie QBs on Thanksgiving", | |
"id":8659824, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<response> | |
<timestamp>2012-11-21T16:38:21Z</timestamp> | |
<resultsOffset>0</resultsOffset> | |
<status>success</status> | |
<resultsLimit>5</resultsLimit> | |
<resultsCount>768</resultsCount> | |
<notes> | |
<notesItem> | |
<headline>Cowboys Great Against Rookie QBs on Thanksgiving</headline> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resultsOffset":0, | |
"resultsLimit":50, | |
"resultsCount":1, | |
"season":{ | |
"olympicSeasonId":31, | |
"year":2008, | |
"type":2, | |
"description":"regular", | |
"startDate":"2008-08-06T07:00:00Z", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<response> | |
<resultsOffset>0</resultsOffset> | |
<resultsLimit>50</resultsLimit> | |
<resultsCount>1</resultsCount> | |
<season> | |
<olympicSeasonId>31</olympicSeasonId> | |
<year>2008</year> | |
<type>2</type> | |
<description>regular</description> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sports":[ | |
{ | |
"name":"hockey", | |
"id":70, | |
"leagues":[ | |
{ | |
"name":"National Hockey League", | |
"abbreviation":"nhl", | |
"id":90, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<response> | |
<sports> | |
<sportsItem> | |
<name>hockey</name> | |
<id>70</id> | |
<leagues> | |
<leaguesItem> | |
<name>National Hockey League</name> | |
<abbreviation>nhl</abbreviation> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"timestamp": "2014-07-22T16:30:54Z", | |
"resultsOffset": 0, | |
"status": "success", | |
"resultsLimit": 2, | |
"resultsCount": 456, | |
"headlines": [ | |
{ | |
"headline": "Suns expect Eric Bledsoe to return", | |
"type": "HeadlineNews", |