# Export Reddit User Profiles to CSV

**Use case:** 

Extract detailed user data, including karma and post history, for Reddit usernames. Receive structured CSV output for easy analysis.

## Input

```json
{
  "usernames": [
    "spez",
    "GallowBoob",
    "AutoModerator"
  ],
  "maxItems": 100,
  "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.