# Monitor Spotify Lofi Beats Playlist Changes

**Use case:** 

Create a reusable baseline for Spotify’s public lofi beats playlist and emit track change records for scheduled automation.

## Input

```json
{
  "playlistUrls": [
    "https://open.spotify.com/playlist/37i9dQZF1DWWQRwui0ExPn"
  ],
  "monitorKey": "lofi-beats-monitor",
  "emitInitialAdds": true,
  "resetSnapshots": false
}
```

## Output

```json
{
  "changeType": {
    "label": "Change",
    "format": "string"
  },
  "playlistName": {
    "label": "Playlist",
    "format": "string"
  },
  "trackName": {
    "label": "Track",
    "format": "string"
  },
  "artists": {
    "label": "Artists",
    "format": "array"
  },
  "previousPosition": {
    "label": "From",
    "format": "integer"
  },
  "currentPosition": {
    "label": "To",
    "format": "integer"
  },
  "changedFields": {
    "label": "Metadata changed",
    "format": "array"
  },
  "detectedAt": {
    "label": "Detected",
    "format": "string"
  },
  "playlistUrl": {
    "label": "Playlist URL",
    "format": "string"
  },
  "trackUrl": {
    "label": "Track URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Spotify Playlist Tracker](https://apify.com/automation-lab/spotify-playlist-change-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/spotify-playlist-change-monitor) to learn more, explore other use cases, and run it yourself.