# SoundCloud comment monitoring workflow

**Use case:** 

Scrape recent comments across multiple SoundCloud tracks for recurring social listening, release monitoring, and fan research.

## Input

```json
{
  "trackUrls": [
    {
      "url": "https://soundcloud.com/odesza/a-moment-apart"
    },
    {
      "url": "https://soundcloud.com/odesza/line-of-sight-feat-wynne-mansionair"
    }
  ],
  "maxCommentsPerTrack": 1000,
  "sort": "newest",
  "includeReplies": true,
  "useProxy": true
}
```

## Output

```json
{
  "trackTitle": {
    "label": "Track"
  },
  "artist": {
    "label": "Artist"
  },
  "body": {
    "label": "Comment"
  },
  "username": {
    "label": "Commenter"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "positionFormatted": {
    "label": "Position"
  },
  "likesCount": {
    "label": "Likes"
  },
  "replyCount": {
    "label": "Replies"
  },
  "isReply": {
    "label": "Reply"
  },
  "trackUrl": {
    "label": "Track URL",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "commentId": {
    "label": "Comment ID"
  },
  "trackId": {
    "label": "Track ID"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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