# Top Posts of All Time From Any Subreddit

**Use case:** 

The all-time top posts of any subreddit, exported as a clean dataset for discourse analysis, data journalism and content benchmarking. Researcher-ready.

## Input

```json
{
  "sources": [
    "r/dataisbeautiful",
    "r/changemyview",
    "r/science"
  ],
  "method": "rss",
  "sort": "top",
  "time": "all",
  "maxPostsPerSubreddit": 50,
  "minScore": 1000,
  "minWords": 30,
  "maxWords": 800,
  "minHookScore": 0,
  "requireStory": false,
  "includeNsfw": false,
  "cleanText": true,
  "rawMode": false,
  "dedupeAcrossRuns": true,
  "commentLimit": 20,
  "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.