# Identify Niche Power Users on Reddit

**Use case:** 

Analyze specific Reddit users to find influential profiles. Retrieve structured data on karma and posting history for targeted insights.

## Input

```json
{
  "usernames": [
    "Poem_for_your_sprog",
    "Shitty_Watercolour"
  ],
  "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.