artists Data Type

A Result consisting of a list of artists.

Properties
name data type description
artist array of artist result list of artists
total number the total amount of items matching the query
page number the current page. starts at 1
itemsPerPage number the amount of items you get per page

Example

{
  "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"
  }, {
    "mbid" : "...",
    "tmid" : 12345,
    "name" : "...",
    "sortName" : "...",
    "disambiguation" : "...",
    "url" : "..."
  } ],
  "total" : 42,
  "page" : 1,
  "itemsPerPage" : 20
}