# Monitor a SoundCloud artist for new tracks

**Use case:** 

Track a SoundCloud artist and capture only new uploads each run: track title, plays, likes, reposts, genre, duration and release date.

## Input

```json
{
  "mode": "artistDetails",
  "searchTerms": [
    "lofi"
  ],
  "artistUrls": [
    "https://soundcloud.com/flume"
  ],
  "maxResultsPerQuery": 30,
  "includeWebProfiles": true,
  "includeTracks": true,
  "maxTracksPerArtist": 20,
  "includePlaylists": false,
  "maxPlaylistsPerArtist": 10,
  "enrichCreatorContacts": false,
  "minFollowers": 0,
  "withEmailOnly": false,
  "monitorMode": true,
  "monitorStoreName": "soundcloud-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "trackId": {
    "label": "Track ID"
  },
  "title": {
    "label": "Track"
  },
  "artistName": {
    "label": "Artist"
  },
  "genre": {
    "label": "Genre"
  },
  "playbackCount": {
    "label": "Plays"
  },
  "likesCount": {
    "label": "Likes"
  },
  "durationFormatted": {
    "label": "Duration"
  },
  "releaseDate": {
    "label": "Released"
  },
  "permalinkUrl": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [SoundCloud Scraper - Artists, Tracks & Creator Leads](https://apify.com/scrapesage/soundcloud-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/soundcloud-scraper) to learn more, explore other use cases, and run it yourself.