# Monitor Brand Mentions on Reddit

**Use case:** 

Monitor brand or product mentions across Reddit posts and comments by keyword. Track sentiment and reach. Export to CSV, JSON or Excel.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.reddit.com/r/AskReddit/"
    },
    {
      "url": "https://www.reddit.com/user/spez/"
    }
  ],
  "searches": [
    "Notion",
    "Obsidian"
  ],
  "searchPosts": true,
  "searchComments": true,
  "searchCommunities": false,
  "searchUsers": false,
  "sort": "new",
  "time": "week",
  "includeNSFW": true,
  "maxPostCount": 150,
  "maxComments": 150,
  "maxItems": 300,
  "maxCommunitiesCount": 10,
  "maxUserCount": 10,
  "skipComments": false,
  "skipUserPosts": false,
  "skipCommunity": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "upvote_ratio": {
    "label": "Upvote ratio",
    "format": "number"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "total_awards_received": {
    "label": "Awards",
    "format": "number"
  },
  "link_flair_text": {
    "label": "Flair",
    "format": "string"
  },
  "over_18": {
    "label": "NSFW",
    "format": "boolean"
  },
  "is_video": {
    "label": "Is video",
    "format": "boolean"
  },
  "created_utc": {
    "label": "Created (UNIX seconds)",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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