# Discover rising SoundCloud artists by followers

**Use case:** 

Scout SoundCloud talent in any genre filtered by follower count: display name, followers, track count, city, Pro status and lead score.

## Input

```json
{
  "mode": "searchArtists",
  "searchTerms": [
    "indie hip hop"
  ],
  "maxResultsPerQuery": 50,
  "includeWebProfiles": true,
  "includeTracks": false,
  "maxTracksPerArtist": 10,
  "includePlaylists": false,
  "maxPlaylistsPerArtist": 10,
  "enrichCreatorContacts": false,
  "minFollowers": 10000,
  "withEmailOnly": false,
  "monitorMode": false,
  "monitorStoreName": "soundcloud-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "userId": {
    "label": "User ID"
  },
  "username": {
    "label": "Permalink"
  },
  "displayName": {
    "label": "Artist"
  },
  "followerCount": {
    "label": "Followers"
  },
  "trackCount": {
    "label": "# Tracks"
  },
  "city": {
    "label": "City"
  },
  "countryCode": {
    "label": "Country"
  },
  "isPro": {
    "label": "Pro"
  },
  "isVerified": {
    "label": "Verified"
  },
  "website": {
    "label": "Website"
  },
  "leadScore": {
    "label": "Lead score"
  },
  "profileUrl": {
    "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.