# Scrape Ambient tracks and artists from SoundCloud

**Use case:** 

Search ambient on SoundCloud without a login: tracks, artist profiles, play counts and metadata.

## Input

```json
{
  "profileUrls": [
    "https://soundcloud.com/example_artist"
  ],
  "trackUrls": [],
  "searchQueries": [
    "ambient"
  ],
  "maxTracksPerSource": 100,
  "includeProfile": true,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "title": {
    "label": "Title"
  },
  "artistUsername": {
    "label": "Artist"
  },
  "url": {
    "label": "URL"
  },
  "genre": {
    "label": "Genre"
  },
  "playbackCount": {
    "label": "Plays"
  },
  "likesCount": {
    "label": "Likes"
  },
  "repostsCount": {
    "label": "Reposts"
  },
  "commentCount": {
    "label": "Comments"
  },
  "durationMs": {
    "label": "Duration (ms)"
  },
  "createdAt": {
    "label": "Created"
  },
  "tags": {
    "label": "Tags"
  },
  "artworkUrl": {
    "label": "Artwork"
  }
}
```

## About this Actor

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