# r/AskReddit Top Threads Plus Comments Scraper

**Use case:** 

The day's top r/AskReddit questions with their top comments, fetched via Reddit app credentials for full thread data. Posts and replies together.

## Input

```json
{
  "sources": [
    "r/AskReddit"
  ],
  "method": "oauth",
  "sort": "top",
  "time": "day",
  "maxPostsPerSubreddit": 20,
  "minScore": 1000,
  "minWords": 30,
  "maxWords": 800,
  "minHookScore": 0,
  "requireStory": false,
  "includeNsfw": false,
  "cleanText": false,
  "rawMode": false,
  "dedupeAcrossRuns": true,
  "commentLimit": 15,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "subreddit": {
    "label": "Sub",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "selftext": {
    "label": "Post body",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Upvotes",
    "format": "number"
  },
  "fetchedCommentCount": {
    "label": "Comments",
    "format": "number"
  },
  "hookScore": {
    "label": "Hook",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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