# Scrape users by keyword on SoundCloud

**Use case:** 

Extract user listings by keyword from SoundCloud. Structured profile data with names and follower counts. Pay per result.

## Input

```json
{
  "mode": "searchUsers",
  "searchQueries": [
    "dj"
  ],
  "startUrls": [],
  "maxResults": 5,
  "hydratePlaylistTracks": true,
  "includeCreatorDetails": true
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "playbackCount": {
    "label": "Plays",
    "format": "number"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  }
}
```

## About this Actor

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