# Top Reddit Comment Threads from changemyview

**Use case:** 

Extract detailed comment threads from r/changemyview. Receive structured data on top comments, authors, scores, and timestamps.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.reddit.com/r/pics/comments/abc123/title/"
    }
  ],
  "subreddits": [
    "changemyview"
  ],
  "sort": "top",
  "time": "month",
  "maxComments": 100,
  "maxCommentDepth": 8,
  "commentDateLimit": "2026-01-01",
  "maxItems": 100,
  "maxPostsPerSource": 25,
  "maxPages": 1,
  "maxRetries": 3,
  "requestDelayMs": 300,
  "debug": false
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "string"
  },
  "body": {
    "label": "Comment",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "createdUtc": {
    "label": "Created (UTC)",
    "format": "string"
  },
  "depth": {
    "label": "Depth",
    "format": "integer"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "postTitle": {
    "label": "Post",
    "format": "string"
  },
  "permalink": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Comment Scraper V2](https://apify.com/myagizm/reddit-comment-scraper-v2) with a specific input configuration. Visit the [Actor detail page](https://apify.com/myagizm/reddit-comment-scraper-v2) to learn more, explore other use cases, and run it yourself.