http://api.songkick.com/api/3.0/events/{event_id}/setlists.json?apikey={your_api_key}
http://api.songkick.com/api/3.0/events/{event_id}/setlists.xml?apikey={your_api_key}
Returns the setlists for a specific event. Extract the event ID either from a previous api call or from the URL of the event page on the website, eg:
http://www.songkick.com/concerts/786417-wilco-at-troxy http://www.songkick.com/festivals/585-glastonbury-festival/id/659462-glastonbury-festival-2009
Have IDs 786417 and 659462 respectively.
When requesting data in JSON format, JSONP can be specified using the
jsoncallback
parameter. Here is an example of using JSONP from jQuery:
$.getJSON("http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}&jsoncallback=?",
function(data){
// data is JSON response object
});