API Doc

API Methods

artist.getTopFans

Get the top tags for an artist on Last.fm, ordered by popularity.
Original docs: artist.getTopFans

e.g. http://lastfm-api-ext.appspot.com/2.0/?method=artist.getTopFans&artist=cher&api_key=b25b959554ed76058ac220b7b2e0a026

Params

artist (Required) : The Artist name in question
api_key (Required) : A Last.fm API key
outtype : The data output format (js, json, php). Default is XML. See supported response formats in the overview.
callback : Function name that will wrap the data if JSONP (outtype 'js') is used.

Sample Response (JSON Object Structure)

{
  "artist": "Cher",
  "topfans": [{
      "name": "Haldeth",
      "url": "http://www.last.fm/user/Haldeth/",
      "weight": 114242000,
      "image_small": "...",
      "image_medium": "...",
      "image_large": "..."
  },
  ...
  ]
}