Developer docs

Spotify integration

Spotify is a digital music and podcast streaming service with millions of…

Updated June 2026 88 actions available

Provider
spotify
Category
Other
Setup
Bring-your-own OAuth credentials
Actions
88 available

Quick start

Call Spotify from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Spotify's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "SPOTIFY_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

This integration uses OAuth, but the platform credentials for Spotify haven't been registered yet. Reach out to the OverSkill team so we can register the OAuth client_id / client_secret — until then the "Connect" button won't work.

Available actions

88 actions exposed via the Spotify integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 88 actions
  • SPOTIFY_FOLLOW_PLAYLIST
  • SPOTIFY_GET_A_CHAPTER
  • SPOTIFY_GET_ALBUM
  • SPOTIFY_GET_ALBUM_TRACKS
  • SPOTIFY_GET_AN_AUDIOBOOK
  • SPOTIFY_GET_ARTIST
  • SPOTIFY_GET_ARTIST_S_ALBUMS
  • SPOTIFY_GET_ARTIST_S_RELATED_ARTISTS
  • SPOTIFY_GET_ARTIST_S_TOP_TRACKS
  • SPOTIFY_GET_AUDIOBOOK_CHAPTERS
  • SPOTIFY_GET_AVAILABLE_DEVICES
  • SPOTIFY_GET_AVAILABLE_GENRE_SEEDS
  • SPOTIFY_GET_AVAILABLE_MARKETS
  • SPOTIFY_GET_CATEGORY_S_PLAYLISTS
  • SPOTIFY_GET_CURRENTLY_PLAYING_TRACK
  • SPOTIFY_GET_CURRENT_USER_S_PLAYLISTS
  • SPOTIFY_GET_CURRENT_USER_S_PROFILE
  • SPOTIFY_GET_EPISODE
  • SPOTIFY_GET_FEATURED_PLAYLISTS
  • SPOTIFY_GET_FOLLOWED_ARTISTS
  • SPOTIFY_GET_NEW_RELEASES
  • SPOTIFY_GET_PLAYBACK_STATE
  • SPOTIFY_GET_PLAYLIST
  • SPOTIFY_GET_PLAYLIST_COVER_IMAGE
  • SPOTIFY_GET_PLAYLIST_ITEMS
  • SPOTIFY_GET_RECENTLY_PLAYED_TRACKS
  • SPOTIFY_GET_RECOMMENDATIONS
  • SPOTIFY_GET_SEVERAL_ALBUMS
  • SPOTIFY_GET_SEVERAL_ARTISTS
  • SPOTIFY_GET_SEVERAL_AUDIOBOOKS
  • SPOTIFY_GET_SEVERAL_BROWSE_CATEGORIES
  • SPOTIFY_GET_SEVERAL_CHAPTERS
  • SPOTIFY_GET_SEVERAL_EPISODES
  • SPOTIFY_GET_SEVERAL_SHOWS
  • SPOTIFY_GET_SEVERAL_TRACKS
  • SPOTIFY_GET_SEVERAL_TRACKS_AUDIO_FEATURES
  • SPOTIFY_GET_SHOW
  • SPOTIFY_GET_SHOW_EPISODES
  • SPOTIFY_GET_SINGLE_BROWSE_CATEGORY
  • SPOTIFY_GET_THE_USER_S_QUEUE
  • SPOTIFY_GET_TRACK
  • SPOTIFY_GET_TRACK_S_AUDIO_ANALYSIS
  • SPOTIFY_GET_TRACK_S_AUDIO_FEATURES
  • SPOTIFY_GET_USER_S_PLAYLISTS
  • SPOTIFY_GET_USER_S_PROFILE
  • SPOTIFY_GET_USER_S_SAVED_ALBUMS
  • SPOTIFY_GET_USER_S_SAVED_AUDIOBOOKS
  • SPOTIFY_GET_USER_S_SAVED_EPISODES
  • SPOTIFY_GET_USER_S_SAVED_SHOWS
  • SPOTIFY_GET_USER_S_SAVED_TRACKS
  • SPOTIFY_GET_USER_S_TOP_ARTISTS
  • SPOTIFY_GET_USER_S_TOP_TRACKS
  • SPOTIFY_PAUSE_PLAYBACK
  • SPOTIFY_REMOVE_PLAYLIST_ITEMS
  • SPOTIFY_REMOVE_USERS_SAVED_ALBUMS
  • SPOTIFY_REMOVE_USER_S_SAVED_AUDIOBOOKS
  • SPOTIFY_REMOVE_USER_S_SAVED_EPISODES
  • SPOTIFY_REMOVE_USER_S_SAVED_SHOWS
  • SPOTIFY_REMOVE_USER_S_SAVED_TRACKS
  • SPOTIFY_SAVE_ALBUMS_FOR_CURRENT_USER
  • SPOTIFY_SAVE_AUDIOBOOKS_FOR_CURRENT_USER
  • SPOTIFY_SAVE_EPISODES_FOR_CURRENT_USER
  • SPOTIFY_SAVE_SHOWS_FOR_CURRENT_USER
  • SPOTIFY_SAVE_TRACKS_FOR_CURRENT_USER
  • SPOTIFY_SEARCH_FOR_ITEM
  • SPOTIFY_SEEK_TO_POSITION
  • SPOTIFY_SET_PLAYBACK_VOLUME
  • SPOTIFY_SET_REPEAT_MODE
  • SPOTIFY_SKIP_TO_NEXT
  • SPOTIFY_SKIP_TO_PREVIOUS
  • SPOTIFY_START_RESUME_PLAYBACK
  • SPOTIFY_TOGGLE_PLAYBACK_SHUFFLE
  • SPOTIFY_TRANSFER_PLAYBACK
  • SPOTIFY_UNFOLLOW_ARTISTS_OR_USERS
  • SPOTIFY_UNFOLLOW_PLAYLIST
  • SPOTIFY_UPDATE_PLAYLIST_ITEMS

Build with Spotify

Open OverSkill, describe what you want to build, and reference Spotify in your prompt — the AI will wire up the integration automatically.