# Track Trending Topics on Reddit

**Use case:** 

Monitor top discussions in any subreddit. Get the most upvoted posts of the week to spot trends and community themes.

## Input

```json
{
  "maxItems": 500,
  "subreddits": [
    "technology",
    "gadgets",
    "Futurology"
  ],
  "sort": "top",
  "time": "week",
  "includeNSFW": false,
  "includeSpoilers": true,
  "includeStickied": true,
  "minScore": 100,
  "maxPages": 5,
  "postsPerSource": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "enrichOutput": false,
  "mcpMode": "perPost"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Upvotes",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "upvoteRatio": {
    "label": "Upvote %",
    "format": "number"
  },
  "linkFlairText": {
    "label": "Category",
    "format": "text"
  },
  "domain": {
    "label": "Source Domain",
    "format": "text"
  },
  "over18": {
    "label": "NSFW",
    "format": "boolean"
  },
  "spoiler": {
    "label": "Spoiler",
    "format": "boolean"
  },
  "stickied": {
    "label": "Pinned",
    "format": "boolean"
  },
  "isSelf": {
    "label": "Text Post",
    "format": "boolean"
  },
  "awards": {
    "label": "Awards",
    "format": "number"
  },
  "url": {
    "label": "External Link",
    "format": "link"
  },
  "permalink": {
    "label": "View on Reddit",
    "format": "link"
  },
  "createdAt": {
    "label": "Posted",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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