# SoundCloud playlist scraper

**Use case:** 

Extract tracks from a SoundCloud playlist URL with artwork, track URLs, play counts, likes, reposts, comments, duration, and genres.

## Input

```json
{
  "mode": "playlistUrl",
  "searchQueries": [
    "lofi hip hop"
  ],
  "startUrls": [
    "https://soundcloud.com/discover/sets/charts-top:all-music:us"
  ],
  "maxResults": 25,
  "includeUserDetails": true
}
```

## Output

```json
{
  "artworkUrl": {
    "label": "Artwork",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "playbackCount": {
    "label": "Plays",
    "format": "number"
  },
  "likesCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostsCount": {
    "label": "Reposts",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "duration": {
    "label": "Duration (ms)",
    "format": "number"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  }
}
```

## About this Actor

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