# SoundCloud Drum & Bass Track Scraper

**Use case:** 

Search SoundCloud for drum and bass tracks and export titles, artists, plays and links. Build genre music datasets with clean structured data.

## Input

```json
{
  "searchQuery": "drum and bass",
  "maxItems": 5
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artist": {
    "label": "Artist",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "trackId": {
    "label": "Track Id",
    "format": "number"
  },
  "artistUrl": {
    "label": "Artist Url",
    "format": "link"
  },
  "playCount": {
    "label": "Play Count",
    "format": "number"
  },
  "likesCount": {
    "label": "Likes Count",
    "format": "number"
  },
  "commentCount": {
    "label": "Comment Count",
    "format": "number"
  },
  "repostsCount": {
    "label": "Reposts Count",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "number"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "artistFollowers": {
    "label": "Artist Followers",
    "format": "number"
  }
}
```

## About this Actor

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