Get Artist
ArtistObject Artists.Retrieve(ArtistRetrieveParamsparameters, CancellationTokencancellationToken = default)
GET/artists/{id}
Get Spotify catalog information for a single artist identified by their unique Spotify ID.
Parameters
Returns
Get Artist
ArtistRetrieveParams parameters = new() { ID = "0TnOYISbd1XYRBk9myaseg" };
var artistObject = await client.Artists.Retrieve(parameters);
Console.WriteLine(artistObject);{
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"followers": {
"href": "href",
"published": true,
"total": 0
},
"genres": [
"Prog rock",
"Grunge"
],
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"popularity": 0,
"published": true,
"type": "artist",
"uri": "uri"
}Returns Examples
{
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"followers": {
"href": "href",
"published": true,
"total": 0
},
"genres": [
"Prog rock",
"Grunge"
],
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"popularity": 0,
"published": true,
"type": "artist",
"uri": "uri"
}