/1.0/setlist/version/{versionId} Resource

GET /1.0/setlist/version/{versionId}

Deprecated - always returns Not Found (404)

Returns a setlist for the given versionId. The setlist returned isn't necessarily the most recent version. E.g. if you pass the versionId of a setlist that got edited since you last accessed it, you'll get the same version as last time.

Request Parameters
name type description
versionId path the version id
Response Body
media type data type description
application/json setlist (JSON) the setlist for the provided versionId
application/xml setlist (XML)

Example

Request
GET /1.0/setlist/version/{versionId}
Accept: application/json

              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "artist" : {
    "mbid" : "b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d",
    "tmid" : 735610,
    "name" : "The Beatles",
    "sortName" : "Beatles, The",
    "disambiguation" : "John, Paul, George and Ringo",
    "url" : "https://www.setlist.fm/setlists/the-beatles-23d6a88b.html"
  },
  "venue" : {
    "city" : {
      "id" : "5357527",
      "name" : "Hollywood",
      "stateCode" : "CA",
      "state" : "California",
      "coords" : { },
      "country" : { }
    },
    "url" : "https://www.setlist.fm/venue/compaq-center-san-jose-ca-usa-6bd6ca6e.html",
    "id" : "6bd6ca6e",
    "name" : "Compaq Center"
  },
  "tour" : {
    "name" : "North American Tour 1964"
  },
  "set" : [ {
    "name" : "...",
    "encore" : 12345,
    "song" : [ {
      "name" : "Yesterday",
      "with" : { },
      "cover" : { },
      "info" : "...",
      "tape" : false
    }, {
      "name" : "...",
      "with" : { },
      "cover" : { },
      "info" : "...",
      "tape" : true
    } ]
  }, {
    "name" : "...",
    "encore" : 12345,
    "song" : [ {
      "name" : "...",
      "with" : { },
      "cover" : { },
      "info" : "...",
      "tape" : true
    }, {
      "name" : "...",
      "with" : { },
      "cover" : { },
      "info" : "...",
      "tape" : true
    } ]
  } ],
  "info" : "Recorded and published as 'The Beatles at the Hollywood Bowl'",
  "url" : "https://www.setlist.fm/setlist/the-beatles/1964/hollywood-bowl-hollywood-ca-63de4613.html",
  "id" : "63de4613",
  "versionId" : "7be1aaa0",
  "eventDate" : "23-08-1964",
  "lastUpdated" : "2013-10-20T05:18:08.000+0000"
}