A setlist consists of different (at least one) sets. Sets can either be sets as defined in the Guidelines or encores.
name | data type | description |
---|---|---|
name | string | the description/name of the set. E.g. "Acoustic set" or "Paul McCartney solo" |
encore | number | if the set is an encore, this is the number of the encore, starting with 1 for the first encore, 2 for the second and so on. |
song | array of song | this set's songs |
Example
{ "name" : "...", "encore" : 12345, "song" : [ { "name" : "Yesterday", "with" : { "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" }, "cover" : { "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" }, "info" : "...", "tape" : false }, { "name" : "...", "with" : { "mbid" : "...", "tmid" : 12345, "name" : "...", "sortName" : "...", "disambiguation" : "...", "url" : "..." }, "cover" : { "mbid" : "...", "tmid" : 12345, "name" : "...", "sortName" : "...", "disambiguation" : "...", "url" : "..." }, "info" : "...", "tape" : true } ] }