swagger: '2.0' info: description: '
The setlist.fm API has been designed to give you easy access to setlist data in order to build fancy websites and other applications. Before starting to use the API, be sure to ...
If this documentation isn''t enough or if you''ve got other things you''d like to tell us about the API, visit the API Forum.
Note that the setlist.fm API is, according to the API terms of service, only free for non-commercial projects. If you''re interested in using the API for commercial purposes, contact us.
This service provides methods to get both setlists and components of setlists such as artists, cities, countries or venues.
The REST service currently supports XML (default) and JSON content.
To receive a JSON response, set the Accept
header to application/json.
(Please note that this is an experimental feature and does not work for all cities!)
Most of the featured methods honor the Accept-Language
header. This header is used for
localizing cities and countries. The default language is English (en), but you can provide any of the languages
Spanish (es), French (fr), German (de), Portuguese (pt), Turkish (tr), Italian (it) or Polish (pl).
E.g. if you search a setlist for a concert that took place in Vienna and you pass "de" as header, you''ll
get "Wien, Österreich" instead of "Vienna, Austria".
This also works if you use a different language than the country''s native language.
E.g. for a concert in New York, you''ll get "Nueva York, Estados Unidos" instead of "New York, United States" if you pass "es" as language.
x-api-key header.
| Version | Docs | End of Service |
|---|---|---|
| 1.0 | Docs | - |
| 0.1 | December 31, 2017 |
Returns an artist for a given Musicbrainz MBID
' operationId: resource__1.0_artist__mbid__getArtist_GET produces: - application/xml - application/json parameters: - name: mbid in: path required: true type: string description: a Musicbrainz MBID, e.g. 0bfba3d3-6a04-4779-bb0a-df07df5b0558 responses: '200': schema: description: '' $ref: '#/definitions/json_Artist' headers: {} examples: application/json: 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 description: Success definitions: json_Artist: type: object title: artist properties: mbid: example: b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d description: unique Musicbrainz Identifier (MBID), e.g. "b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d" type: string tmid: example: 735610 description: unique Ticket Master Identifier (TMID), e.g. 735610 (deprecated) type: number name: example: The Beatles description: the artist's name, e.g. "The Beatles" type: string sortName: example: Beatles, The description: the artist's sort name, e.g. "Beatles, The" or "Springsteen, Bruce" type: string disambiguation: example: John, Paul, George and Ringo description: disambiguation to distinguish between artists with same names type: string url: example: https://www.setlist.fm/setlists/the-beatles-23d6a88b.html description: the attribution url type: string example: 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 description: 'This class represents an artist. An artist is a musician or a group of musicians. Each artist has a definite Musicbrainz Identifier (MBID) with which the artist can be uniquely identified.'