API Doc

API Methods

user.getPlaylists

Get a list of a user's neighbours on Last.fm.
Original docs: user.getPlaylists

e.g. http://lastfm-api-ext.appspot.com/2.0/?method=user.getPlaylists&user=rj&api_key=b25b959554ed76058ac220b7b2e0a026

Params

user (Required) : The last.fm username to fetch the playlists of.
api_key (Required) : A Last.fm API key
outtype : The data output format (js, json, php). Default is XML.
callback : Function name that will wrap the data if JSONP (outtype 'js') is used.

Sample Response (JSON Object Structure)

{
  "user": "RJ",
  "playlists": [{
      "id": "2615079",
      "title": "Duck playlist",
      "date: "2006-11-15T13:05:48",
      "size": 10,
      "creator": "http://www.last.fm/user/RJ/"  
  },
  ...
  ]
}