# Reddit Technology Comments

**Use case:** 

Scrape r/technology comment threads with author, score and depth for tech opinion mining.

## Input

```json
{
  "maxComments": 50,
  "postUrls": [
    "https://www.reddit.com/r/AskReddit/comments/1ndskqc/"
  ],
  "subreddits": [
    "technology"
  ],
  "sort": "top"
}
```

## Output

```json
{
  "body": {
    "label": "Comment",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "isTopLevel": {
    "label": "Top level",
    "format": "boolean"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "postTitle": {
    "label": "Post",
    "format": "text"
  },
  "permalink": {
    "label": "URL",
    "format": "link"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Comments Scraper: Body, Author, Score & Depth](https://apify.com/scrapers_lat/reddit-comments-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/reddit-comments-scraper) to learn more, explore other use cases, and run it yourself.