This class represents a song that is part of a Set.
| name | data type | description |
|---|---|---|
| name | string | The name of the song. E.g. Yesterday or "Wish You Were Here" |
| with | artist | A different Artist than the performing one that joined the stage for this song. |
| cover | artist | The original Artist of this song, if different to the performing artist. |
| info | string | Special incidents or additional information about the way the song was performed at this specific concert. See the setlist.fm guidelines for a complete list of allowed content. |
| tape | boolean | The song came from tape rather than being performed live. See the tape section of the guidelines for valid usage. |
Example
{
"name" : "Yesterday",
"with" : {
"mbid" : "b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d",
"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",
"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
}