# Reddit Account Verification for Trading

**Use case:** 

Check Reddit accounts before trades. Get structured data on usernames, karma, account age, and post history for reliable trading decisions.

## Input

```json
{
  "usernames": [
    "spez",
    "kn0thing"
  ],
  "maxItems": 50,
  "maxRetries": 3,
  "requestDelayMs": 300,
  "debug": false
}
```

## Output

```json
{
  "name": {
    "label": "Username",
    "format": "string"
  },
  "totalKarma": {
    "label": "Total karma",
    "format": "integer"
  },
  "linkKarma": {
    "label": "Link karma",
    "format": "integer"
  },
  "commentKarma": {
    "label": "Comment karma",
    "format": "integer"
  },
  "createdUtc": {
    "label": "Cake day",
    "format": "string"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isMod": {
    "label": "Mod",
    "format": "boolean"
  },
  "icon": {
    "label": "Avatar",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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