API Doc

API Methods

artist.getEvents

Get a list of events for this artist.
Original docs: artist.getEvents

e.g. http://lastfm-api-ext.appspot.com/2.0/?method=artist.getevents&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.
callback : Function name that will wrap the data if JSONP (outtype 'js') is used.

Sample Response (JSON Object Structure)

{
  "artist: "Cher",
  "total": 4,
  "events": [{
      "id": "599858",
      "title": "Cher",
      "headliner": "Cher",
      "artists":["Cher"],
      "venue": {
          "name": "The Colosseum at Caesars Palace",
          "location": {
              "city": "Las Vegas",
              "country": "United States",
              "street": null,
              "postalcode": null,
              "geo_point": {
                  "lat": "36.2265501474709",
                  "long": "-115.0048828125"
              }
              "timezone": "PST"
          }
          "url": "http://www.last.fm/venue/8841108"
      }
      "startDate": "Sat, 16 Aug 2008",
      "startTime": "19:30",
      "description": null,
      "image_small": "http://userserve-ak.last.fm/serve/50/376334.jpg",
      "image_medium": "http://userserve-ak.last.fm/serve/85/376334.jpg",
      "image_large": "http://userserve-ak.last.fm/serve/160/376334.jpg",
      "url": "http://www.last.fm/event/599858"
  },
  ...
  ]
}