# Reddit Community Scraper – Find Subreddits by Topic

**Use case:** 

Find Reddit communities by keyword. Extract subreddit names, descriptions, weekly visitors, and post counts. Export as JSON, CSV, or Excel. No login required.

## Input

```json
{
  "query": "apify",
  "searchType": "communities",
  "maxResults": 10,
  "timeFilter": "all",
  "sortOrder": "relevance"
}
```

## Output

```json
{
  "dataType": {
    "label": "Type",
    "format": "string"
  },
  "id": {
    "label": "ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "subredditName": {
    "label": "Subreddit",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  },
  "voteCount": {
    "label": "Votes",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "body": {
    "label": "Body",
    "format": "string"
  },
  "karma": {
    "label": "Karma",
    "format": "integer"
  },
  "weeklyVisitors": {
    "label": "Weekly Visitors",
    "format": "integer"
  }
}
```

## About this Actor

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