# Compare activity across 5 subreddits in the same niche

**Use case:** 

This task runs the same query across multiple subreddits so you can compare engagement and find the most active community for your specific niche.

## Input

```json
{
  "queries": [
    "r/startups launch",
    "r/Entrepreneur launch",
    "r/SaaS launch",
    "r/IndieHackers launch",
    "r/SideProject launch"
  ],
  "max_posts_per_query": 30,
  "include_comments": false,
  "max_comments_per_post": 100,
  "detail_workers": 4,
  "sort": "top",
  "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.