# Reddit User Profile Lookup Scraper

**Use case:** 

Look up Reddit user profiles by username with karma, cake day, trophies and recent posts and comments.

## Input

```json
{
  "usernames": [
    "spez",
    "kn0thing"
  ],
  "withDetails": true,
  "maxPostsPerUser": 25,
  "maxCommentsPerUser": 25,
  "sort": "new",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "postKarma": {
    "label": "Post Karma",
    "format": "number"
  },
  "commentKarma": {
    "label": "Comment Karma",
    "format": "number"
  },
  "totalKarma": {
    "label": "Total Karma",
    "format": "number"
  },
  "accountCreated": {
    "label": "Created",
    "format": "date"
  },
  "cakeDay": {
    "label": "Cake Day",
    "format": "text"
  },
  "numPostsFetched": {
    "label": "Posts",
    "format": "number"
  },
  "numCommentsFetched": {
    "label": "Comments",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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