Skip to content
DocumentationAPI Reference

Check If User Follows Artists or Users

me.following.check(FollowingCheckParams**kwargs) -> FollowingCheckResponse
GET/me/following/contains

Check to see if the current user is following one or more artists or other Spotify users.

ParametersExpand Collapse
ids: str

A comma-separated list of the artist or the user Spotify IDs to check. For example: ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q. A maximum of 50 IDs can be sent in one request.

type: Literal["artist", "user"]

The ID type: either artist or user.

Accepts one of the following:
"artist"
"user"
ReturnsExpand Collapse
List[bool]

Check If User Follows Artists or Users

import os
from spotted import Spotted

client = Spotted(
    access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"),  # This is the default and can be omitted
)
response = client.me.following.check(
    ids="2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6",
    type="artist",
)
print(response)
[
  false,
  true
]
Returns Examples
[
  false,
  true
]