v1

latestSwagger 2.02026-07-13153383.1 KB
/1.0/search/artists

Search for artists.

Search for artists.

get/1.0/search/artists

Query parameters

artistMbidstring

the artist's Musicbrainz Identifier (mbid)

artistNamestring

the artist's name

artistTmidinteger

the artist's Ticketmaster Identifier (tmid) (deprecated)

pinteger

the number of the result page you'd like to have

sortstring

the sort of the result, either sortName (default) or relevance

Response

Success

totalnumber

the total amount of items matching the query

pagenumber

the current page. starts at 1

itemsPerPagenumber

the amount of items you get per page

Example response

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