# Monitor Subreddits for B2B Buyer Signals

**Use case:** 

Detect B2B buyer-intent on Reddit — post title, body, score, comments, author, and flair — across multiple subreddits, newest-first. Use for vendor-evaluation l

## Input

```json
{
  "queries": [
    "r/devops: alternative to",
    "r/sysadmin: recommend",
    "r/SaaS: switching from",
    "r/sales: sales intelligence"
  ],
  "startUrls": [],
  "postUrls": [],
  "sort": "new",
  "timeFilter": "month",
  "maxResults": 25,
  "includeComments": true,
  "maxCommentsPerPost": 20,
  "maxCommentDepth": 2,
  "minScore": 1,
  "skipPinnedPosts": true,
  "monitorMode": "new-posts",
  "monitorStoreName": "reddit-b2b-buyer-signals",
  "maxConcurrency": 3,
  "requestDelaySecs": 0.65
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "text"
  },
  "upvoteRatio": {
    "label": "Upvote ratio",
    "format": "text"
  },
  "numComments": {
    "label": "Comments",
    "format": "text"
  },
  "created": {
    "label": "Created",
    "format": "text"
  },
  "flair": {
    "label": "Flair",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "selftext": {
    "label": "Content",
    "format": "text"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  },
  "changeType": {
    "label": "Change type",
    "format": "text"
  },
  "firstSeenAt": {
    "label": "First seen",
    "format": "text"
  }
}
```

## About this Actor

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