# Search SoundCloud Playlists by Keyword

**Use case:** 

Find public SoundCloud playlists by keyword and export playlist, owner, artwork, duration, track count, and engagement metadata.

## Input

```json
{
  "queries": [
    "lofi beats"
  ],
  "playlistQueries": [
    "chillhop essentials"
  ],
  "profileUrls": [
    {
      "url": "https://soundcloud.com/chillhopdotcom"
    }
  ],
  "userQueries": [],
  "chartGenres": [],
  "maxItems": 5,
  "genres": [],
  "tags": [],
  "access": [],
  "maxRuntimeSecs": 120,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "trackTitle": {
    "label": "Track title",
    "format": "string"
  },
  "url": {
    "label": "Track URL",
    "format": "string"
  },
  "artistUsername": {
    "label": "Artist username",
    "format": "string"
  },
  "playlistTitle": {
    "label": "Playlist title",
    "format": "string"
  },
  "playlistUrl": {
    "label": "Playlist URL",
    "format": "string"
  },
  "playlistArtistUsername": {
    "label": "Playlist artist",
    "format": "string"
  },
  "playlistTrackCount": {
    "label": "Playlist track count",
    "format": "integer"
  },
  "playlistDurationMs": {
    "label": "Playlist duration",
    "format": "integer"
  },
  "playlistLikesCount": {
    "label": "Playlist likes",
    "format": "integer"
  },
  "playlistIsAlbum": {
    "label": "Is album",
    "format": "boolean"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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