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
<?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
{ | |
"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> | |
<type>points</type> | |
<leagues> | |
<leaguesItem> | |
<name>National Basketball Assoc.</name> |
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, | |
"type":"points", | |
"leagues":[ | |
{ | |
"name":"National Basketball Assoc.", | |
"abbreviation":"nba", |
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>National Basketball Assoc.</name> | |
<abbreviation>nba</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
{ | |
"sports":[ | |
{ | |
"name":"basketball", | |
"id":40, | |
"leagues":[ | |
{ | |
"name":"National Basketball Assoc.", | |
"abbreviation":"nba", | |
"id":46, |
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
{ | |
"resultsCount":1, | |
"resultsOffset":0, | |
"resultsLimit":10, | |
"recordings":[ | |
{ | |
"id":9939913, | |
"lang":"en", | |
"published":"2013-11-07T16:13:35Z", | |
"premium":false, |
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" encoding="UTF-8"?> | |
<response> | |
<resultsCount>1</resultsCount> | |
<resultsOffset>0</resultsOffset> | |
<resultsLimit>10</resultsLimit> | |
<recordings> | |
<recordingsItem> | |
<id>9939913</id> | |
<lang>en</lang> | |
<published>2013-11-07T16:13:35Z</published> |
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
{ | |
"statuses":[ | |
{ | |
"status":{ | |
"createdAt":"2012-12-10T16:44:00Z", | |
"text":"Watch LIVE at 11:30 am CT as GM Dayton Moore discusses the acquisition of pitchers James Shields and Wade Davis: http://t.co/c711Raaz", | |
"source":"<a href=\"http://www.awarenessnetworks.com\" rel=\"nofollow\">MLB.com</a>", | |
"truncated":false | |
}, | |
"user":{ |