Get Artist
Get Spotify catalog information for a single artist identified by their unique Spotify ID.
You may not facilitate downloads of Spotify content or enable “stream ripping”
More informationSpotify visual content must be kept in its original form, e.g. you can not crop album artwork, overlay images on album artwork, place a brand/logo on album artwork
More informationPlease keep in mind that metadata, cover art and artist images must be accompanied by a link back to the applicable artist, album, track, or playlist on the Spotify Service. You must also attribute content from Spotify with the logo.
More information
Request
- idstringRequired
The Spotify ID of the artist.
Example:0TnOYISbd1XYRBk9myaseg
Response
An artist
Known external URLs for this artist.
- spotifystring
The Spotify URL for the object.
Information about the followers of the artist.
- hrefstringNullable
This will always be set to null, as the Web API does not support it at the moment.
- totalinteger
The total number of followers.
- genresarray of strings
A list of the genres the artist is associated with. If not yet classified, the array is empty.
Example:["Prog rock","Grunge"]
- hrefstring
A link to the Web API endpoint providing full details of the artist.
- idstring
The Spotify ID for the artist.
Images of the artist in various sizes, widest first.
- urlstringRequired
The source URL of the image.
Example:"https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228"
- heightintegerRequiredNullable
The image height in pixels.
Example:300
- widthintegerRequiredNullable
The image width in pixels.
Example:300
- namestring
The name of the artist.
- popularityinteger
The popularity of the artist. The value will be between 0 and 100, with 100 being the most popular. The artist's popularity is calculated from the popularity of all the artist's tracks.
- typestring
The object type.
Allowed values:"artist"
- uristring
The Spotify URI for the artist.
Response sample
{ "external_urls": { "spotify": "string" }, "followers": { "href": "string", "total": 0 }, "genres": ["Prog rock", "Grunge"], "href": "string", "id": "string", "images": [ { "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228", "height": 300, "width": 300 } ], "name": "string", "popularity": 0, "type": "artist", "uri": "string"}