# Scrape Reddit user profiles

**Use case:** 

Scrape public Reddit profiles and export usernames, karma breakdown, account age, verification, moderator status, avatars, and profile metadata.

## Input

```json
{
  "username": "thisisbillgates",
  "usernames": []
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "_status": {
    "label": "Status",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "total_karma": {
    "label": "Total Karma",
    "format": "number"
  },
  "link_karma": {
    "label": "Post Karma",
    "format": "number"
  },
  "comment_karma": {
    "label": "Comment Karma",
    "format": "number"
  },
  "awardee_karma": {
    "label": "Awardee Karma",
    "format": "number"
  },
  "awarder_karma": {
    "label": "Awarder Karma",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "created_utc": {
    "label": "Created (UTC)",
    "format": "number"
  },
  "created": {
    "label": "Created",
    "format": "number"
  },
  "has_verified_email": {
    "label": "Verified Email",
    "format": "boolean"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "is_gold": {
    "label": "Premium",
    "format": "boolean"
  },
  "is_mod": {
    "label": "Moderator",
    "format": "boolean"
  },
  "is_employee": {
    "label": "Employee",
    "format": "boolean"
  },
  "is_blocked": {
    "label": "Blocked",
    "format": "boolean"
  },
  "is_friend": {
    "label": "Friend",
    "format": "boolean"
  },
  "accept_followers": {
    "label": "Accepts Followers",
    "format": "boolean"
  },
  "has_subscribed": {
    "label": "Has Subscribed",
    "format": "boolean"
  },
  "hide_from_robots": {
    "label": "Hide From Robots",
    "format": "boolean"
  },
  "pref_show_snoovatar": {
    "label": "Show Snoovatar",
    "format": "boolean"
  },
  "icon_img": {
    "label": "Avatar",
    "format": "image"
  },
  "snoovatar_img": {
    "label": "Snoovatar",
    "format": "image"
  },
  "snoovatar_size": {
    "label": "Snoovatar Size",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Profile Scraper | Fastest Bulk Username Lookup](https://apify.com/clearpath/reddit-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clearpath/reddit-profile-scraper) to learn more, explore other use cases, and run it yourself.