# Reddit user profile URL scraper example

**Use case:** 

Extract public account metadata from a Reddit profile URL, including karma, creation date, follower count, bio, badges, and canonical URL.

## Input

```json
{
  "usernames": [
    "spez",
    "reddit"
  ],
  "startUrls": [
    {
      "url": "https://www.reddit.com/user/spez/"
    }
  ],
  "maxItems": 1,
  "maxConcurrency": 1,
  "maxRetries": 2,
  "useResidentialProxy": true,
  "proxyCountryCode": "US"
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "totalKarma": {
    "label": "Total karma",
    "format": "integer"
  },
  "commentKarma": {
    "label": "Comment karma",
    "format": "integer"
  },
  "linkKarma": {
    "label": "Link karma",
    "format": "integer"
  },
  "followersCount": {
    "label": "Followers",
    "format": "integer"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "accountAgeDays": {
    "label": "Age (days)",
    "format": "integer"
  },
  "isMod": {
    "label": "Moderator",
    "format": "boolean"
  },
  "canonicalUrl": {
    "label": "Profile",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

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