# Scrape SoundCloud Lofi Tracks – Ready-to-Run Example

**Use case:** 

Find public SoundCloud lofi tracks with artist, engagement, tag, duration, artwork, and playback metadata—no API key required.

## Input

```json
{
  "queries": [
    "lofi beats"
  ],
  "playlistQueries": [],
  "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"
  },
  "artistProfileUrl": {
    "label": "Artist URL",
    "format": "string"
  },
  "genre": {
    "label": "Genre",
    "format": "string"
  },
  "bpm": {
    "label": "BPM",
    "format": "number"
  },
  "durationMs": {
    "label": "Duration",
    "format": "integer"
  },
  "playbackCount": {
    "label": "Plays",
    "format": "integer"
  },
  "likesCount": {
    "label": "Likes",
    "format": "integer"
  },
  "repostsCount": {
    "label": "Reposts",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "playlistTitle": {
    "label": "Playlist title",
    "format": "string"
  },
  "chartGenre": {
    "label": "Chart genre",
    "format": "string"
  },
  "sourceType": {
    "label": "Source type",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "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.