# Reddit Keyword Search Scraper for Product Research

**Use case:** 

Search across Reddit for any keyword and collect matching posts. Get titles, scores, comment counts and links for product research and monitoring.

## Input

```json
{
  "maxItems": 25,
  "includeComments": false,
  "mode": "search",
  "subreddits": [
    "technology"
  ],
  "searchQuery": "best laptop",
  "sort": "relevance",
  "time": "month",
  "commentsLimit": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "numCrossposts": {
    "label": "Crossposts",
    "format": "number"
  },
  "totalAwards": {
    "label": "Awards",
    "format": "number"
  },
  "linkFlair": {
    "label": "Flair",
    "format": "text"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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