# Find the most viral Reddit posts from the past month

**Use case:** 

This task surfaces Reddit posts with the most comments from the last 30 days. Use it to find trending topics and content ideas for your niche.

## Input

```json
{
  "queries": [
    "AI tools",
    "startup advice",
    "indie hackers",
    "content marketing",
    "remote work"
  ],
  "max_posts_per_query": 50,
  "include_comments": false,
  "max_comments_per_post": 100,
  "detail_workers": 4,
  "sort": "comments",
  "time": "month"
}
```

## Output

```json
{
  "dataType": {
    "label": "Data Type",
    "format": "string"
  },
  "id": {
    "label": "Post/Comment ID",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "title": {
    "label": "Post Title",
    "format": "string"
  },
  "permalink": {
    "label": "Permalink",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "num_comments": {
    "label": "Comment Count",
    "format": "integer"
  },
  "created_iso": {
    "label": "Created At (ISO)",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "search_query": {
    "label": "Search Query",
    "format": "string"
  },
  "search_rank": {
    "label": "Search Rank",
    "format": "integer"
  },
  "is_self": {
    "label": "Is Self Post",
    "format": "boolean"
  }
}
```

## About this Actor

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