Returns The Authenticated User S Activities
The `/me/activities` endpoint lets authenticated users access their SoundCloud
activities (tracks, playlists) based on access level, requiring `AuthHeader`
for security. It returns success (20
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_RETURNS_THE_AUTHENTICATED_USER_S_ACTIVITIES])
Recent The Authenticated User S Activities
This API endpoint lets authenticated users fetch their SoundCloud activities,
like songs and playlists, with filters for access level. It limits results
and secures access via 'AuthHeader', re
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_RECENT_THE_AUTHENTICATED_USER_S_ACTIVITIES])
User Recent Track Activities
This Soundcloud API endpoint fetches recent user tracks, reposts, and playlist
adds, allowing access level filtering and result count customization. It
requires an "AuthHeader" for secure requ
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_USER_RECENT_TRACK_ACTIVITIES])
List User Favorites
This endpoint fetches a user's favored tracks with options for filtering
and pagination. Parameters: `limit` (default 50, max 200), `access` (types),
and `linked_partitioning`. `AuthHeader` is
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_LIST_USER_FAVORITES])
Fetch User Favorites
The `/me/likes/playlists` endpoint lets authenticated users access their
favorite playlists, supports pagination, and requires an AuthHeader. It
delivers detailed playlist, user, and track inf
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_FETCH_USER_FAVORITES])
List Followed By User
Returns a list of SoundCloud users followed by the authenticated user, with
options for result limit and pagination. Supports query parameters for result
customization. Requires authentication
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_LIST_FOLLOWED_BY_USER])
Recent Tracks From Followed Users
This endpoint lets authenticated users see recent tracks from followed users,
offering filter by access level and pagination. Authentication is needed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_RECENT_TRACKS_FROM_FOLLOWED_USERS])
Fetch Sound Cloud Follower Profile Details
Fetches SoundCloud user profile details (username, followers) for a user
followed by an authenticated user. Use '/users/{user_id}' for full info.
Requires AuthHeader. Responses: 200 (Success),
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_FETCH_SOUND_CLOUD_FOLLOWER_PROFILE_DETAILS])
Follows A User
The `/me/followings/{user_id}` endpoint on SoundCloud is for following users
by ID, secured with `AuthHeader`. It confirms follows or shows user data,
returning `200` for success, and `401` or
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_FOLLOWS_A_USER])
Deletes A User Who Is Followed By The Authenticated User
Deletes a followed user for the authenticated user by 'user_id'. Returns
'Success' (200) if successful, 'Unauthorized' (401) for authentication failure,
'Not Found' (404) for invalid IDs, and
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_DELETES_A_USER_WHO_IS_FOLLOWED_BY_THE_AUTHENTICATED_USER])
List Authenticated User Followers
Fetches the list of followers for the authenticated user with options to
limit results. Provides user details including follower count, city, and
more. Requires authentication.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_LIST_AUTHENTICATED_USER_FOLLOWERS])
Get Follower User Details
Retrieve a SoundCloud user's follower details by ID with AuthHeader. Includes
username, country, and followers count. Full details at /users/{user_id}.
Note: This endpoint is deprecated.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_GET_FOLLOWER_USER_DETAILS])
Returns User S Playlists Sets
Returns playlist info, playlist tracks and tracks owner info.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_RETURNS_USER_S_PLAYLISTS_SETS])
Returns A List Of The Current User S Tracks
This endpoint fetches the user's tracks with options for limiting results
and pagination, requiring authentication. It supports queries for efficient
data retrieval, returning track details an
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SOUNDCLOUD_RETURNS_A_LIST_OF_THE_CURRENT_USER_S_TRACKS])