# Search - Search all of Reddit Reddit Posts & Comments

**Use case:** 

Extract Reddit Posts & Comments data filtered by Search - Search all of Reddit. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "mode": "search",
  "maxItems": 10,
  "subreddit": "technology",
  "sort": "hot",
  "timeRange": "day",
  "commentSort": "top",
  "postType": "all",
  "includeNsfw": false,
  "includeComments": false,
  "commentsPerPost": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "selftext": {
    "label": "Body",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "comments": {
    "label": "Comments",
    "format": "object"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "upvoteRatio": {
    "label": "Upvote Ratio",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "totalAwards": {
    "label": "Awards",
    "format": "number"
  },
  "linkFlairText": {
    "label": "Flair",
    "format": "text"
  },
  "postHint": {
    "label": "Post Type",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "isSelf": {
    "label": "Self Post",
    "format": "boolean"
  },
  "isVideo": {
    "label": "Video",
    "format": "boolean"
  },
  "isNsfw": {
    "label": "NSFW",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "createdAt": {
    "label": "Created",
    "format": "datetime"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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