--- title: 'Spotify' description: 'Access music catalog, manage playlists, and control playback via the Spotify Web API.' --- # Spotify Access music catalog, manage playlists, and control playback via the Spotify Web API. | Detail | Value | |---|---| | Category | Media | | Base URL | `https://api.spotify.com/v1` | | Authentication | OAuth2 | | Endpoints | 6 | | Connector key | `spotify` | ## Using Spotify in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Spotify** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /me](./get_me_media_getcurrentuser) | Get current user profile | | [GET /me/playlists](./get_me_playlists_media_listplaylists) | Get current user playlists | | [GET /playlists/{playlist_id}](./get_playlists_playlist_id_media_getplaylist) | Get a playlist | | [GET /search](./get_search_media_search) | Search for tracks, artists, albums | | [GET /tracks/{id}](./get_tracks_id_media_gettrack) | Get a track | | [GET /artists/{id}](./get_artists_id_media_getartist) | Get an artist | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.