Skip to content

Spotify Get Artist API

Get Spotify catalog information for a single artist identified by their unique Spotify ID. This endpoint is a proxy to the official Spotify Get Artist API.

Endpoint

GET https://api.recoupable.com/api/spotify/artist/

Parameters

NameTypeRequiredDescription
idstringYesThe Spotify ID of the artist.

Request Examples

cURL
curl -X GET "https://api.recoupable.com/api/spotify/artist/?id=0TnOYISbd1XYRBk9myaseg" \
  -H "Content-Type: application/json"

Example Response

{
  "artist": {
    "external_urls": {
      "spotify": "https://open.spotify.com/artist/0TnOYISbd1XYRBk9myaseg"
    },
    "followers": {
      "href": null,
      "total": 1000000
    },
    "genres": ["Prog rock", "Grunge"],
    "href": "https://api.spotify.com/v1/artists/0TnOYISbd1XYRBk9myaseg",
    "id": "0TnOYISbd1XYRBk9myaseg",
    "images": [
      {
        "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228",
        "height": 300,
        "width": 300
      }
    ],
    "name": "Pitbull",
    "popularity": 85,
    "type": "artist",
    "uri": "spotify:artist:0TnOYISbd1XYRBk9myaseg"
  },
  "error": null
}

Response Properties

PropertyTypeDescription
artistobjectThe Spotify artist object (null if error)
artist.external_urlsobjectKnown external URLs for this artist
artist.external_urls.spotifystringThe Spotify URL for the artist
artist.followersobjectInformation about the followers of the artist
artist.followers.hrefstringThis will always be set to null
artist.followers.totalintegerThe total number of followers
artist.genresarrayA list of the genres the artist is associated with
artist.hrefstringA link to the Web API endpoint providing full details
artist.idstringThe Spotify ID for the artist
artist.imagesarrayImages of the artist in various sizes
artist.images[].urlstringThe source URL of the image
artist.images[].heightintegerThe image height in pixels
artist.images[].widthintegerThe image width in pixels
artist.namestringThe name of the artist
artist.popularityintegerThe popularity of the artist (0-100)
artist.typestringThe object type, always "artist"
artist.uristringThe Spotify URI for the artist
errorobjectError object if request failed (null if successful)

See the Spotify Get Artist API Reference for full details.

Notes

  • This endpoint requires a valid Spotify access token (handled by the Recoup API backend).
  • The response includes both the artist data and any potential error information.
  • For more details, see the official Spotify documentation.