# Reddit Posts, Comments, Users Scraper

**Use case:** 

Extracts posts users, comments and more from Reddit with just a url

## Input

```json
{
  "url": [
    ""
  ],
  "searchTerm": "crypto",
  "searchSort": "relevance",
  "searchTime": "all",
  "searchSubreddit": "",
  "scrapeType": "post",
  "maxComments": 1000,
  "maxPosts": 100,
  "maxListingPosts": 1000,
  "maxCommunities": 1000,
  "maxUsers": 1000
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "contentType": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "communityName": {
    "label": "Subreddit",
    "format": "text"
  },
  "body": {
    "label": "Body",
    "format": "text"
  },
  "upvotes": {
    "label": "Upvotes",
    "format": "number"
  },
  "noOfcomments": {
    "label": "Comments",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "isVideo": {
    "label": "Video",
    "format": "boolean"
  },
  "isAd": {
    "label": "Ad",
    "format": "boolean"
  },
  "isPinned": {
    "label": "Pinned",
    "format": "boolean"
  },
  "isOver18": {
    "label": "NSFW",
    "format": "boolean"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Scraper ✅ Posts, Comments, Users, Communities | NO LOGIN](https://apify.com/peakydev/reddit-scraper-post-comments-users) with a specific input configuration. Visit the [Actor detail page](https://apify.com/peakydev/reddit-scraper-post-comments-users) to learn more, explore other use cases, and run it yourself.