Get Similar Playlists

Return playlists similar to the target playlist on the given platform (Spotify or SoundCloud), with overlap flags for shared moods/genres.

Path Parameters
  • id
    Type: integer
    required

    Chartmetric playlist ID.

  • platform
    Type: string enum
    required

    Streaming platform. One of spotify or soundcloud.

    values
    • spotify
    • soundcloud
Query Parameters
  • indie
    Type: boolean

    If true, return only indie-curated similar playlists. Defaults to false.

  • limit
    Type: integer
    min:  
    1
    max:  
    100

    Maximum number of items to return per request.

  • offset
    Type: integer
    min:  
    0

    Number of items to skip from the start of the result set; pair with limit to paginate.

Responses
  • application/json
Request Example for get/api/playlist/{platform}/{id}/similarplaylists
curl https://api.chartmetric.com/api/playlist/spotify/1/similarplaylists \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "obj": [
    {
      "id": 1816590,
      "playlist_id": "37i9dQZF1DX8C9xQcOrE6T",
      "name": "Disney Hits",
      "image_url": "https://i.scdn.co/image/ab67706f000000034fb035ee54262509612d6900",
      "followers": 3525555,
      "owner_name": "Spotify",
      "user_id": "spotify",
      "owner_id": 2,
      "tags": [
        {
          "id": 12463,
          "name": "hollywood",
          "source": "spotify",
          "type": "genre",
          "url": null,
          "created_at": null,
          "modified_at": null
        }
      ]
    }
  ]
}