VOOZH about

URL: https://developer.spotify.com/documentation/web-api/reference/get-an-artists-related-artists

⇱ Web API Reference | Spotify for Developers


Skip to content
Reference
Web API •References / Artists / Get Artist's Related Artists

Get Artist's Related Artists

Deprecated

Get Spotify catalog information about artists similar to a given artist. Similarity is based on analysis of the Spotify community's listening history.

Important policy notes
  • You may not facilitate downloads of Spotify content or enable “stream ripping”

    More information
  • Spotify 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 information
  • Please 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

  • idstring
    Required

    The Spotify ID of the artist.

    Example: 0TnOYISbd1XYRBk9myaseg

Response

A set of artists

  • Required
    • Known external URLs for this artist.

    • Deprecated

      Information about the followers of the artist.

      • hrefstring
        Nullable

        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
      Deprecated

      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.

      • urlstring
        Required

        The source URL of the image.

        Example: "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228"
      • heightinteger
        Required
        Nullable

        The image height in pixels.

        Example: 300
      • widthinteger
        Required
        Nullable

        The image width in pixels.

        Example: 300
    • namestring

      The name of the artist.

    • popularityinteger
      Deprecated

      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

{"artists": [{"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"}]}