# Scrape a Reddit user's posts, comments & karma

**Use case:** 

Profile any Reddit user: post karma, comment karma, total karma and cake day, plus their recent posts and comments with scores.

## Input

```json
{
  "startUrls": [],
  "subreddits": [
    "RealEstate"
  ],
  "searches": [],
  "usernames": [
    "spez"
  ],
  "searchScope": "posts",
  "sort": "hot",
  "time": "all",
  "maxItems": 100,
  "maxItemsPerSource": 0,
  "includeComments": false,
  "maxCommentsPerPost": 50,
  "commentSort": "confidence",
  "expandMoreComments": false,
  "includeDeletedComments": false,
  "includeNSFW": true,
  "skipAds": true,
  "includeUserProfile": true,
  "includeUserContent": true,
  "userSection": "overview",
  "deduplicate": true,
  "monitorMode": false,
  "monitorStoreName": "reddit-scraper-monitor",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "username": {
    "label": "Username"
  },
  "postKarma": {
    "label": "Post karma"
  },
  "commentKarma": {
    "label": "Comment karma"
  },
  "totalKarma": {
    "label": "Total karma"
  },
  "cakeDay": {
    "label": "Cake day"
  },
  "url": {
    "label": "Profile"
  }
}
```

## About this Actor

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