# Relevance Reddit Profiles

**Use case:** 

Extract Reddit Profiles data filtered by Relevance. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "startUrl": "https://www.reddit.com/search/users/?q=python&type=user",
  "maxItems": 10,
  "onlyGold": false,
  "onlyModerators": false,
  "sortBy": "relevance"
}
```

## Output

```json
{
  "iconUrl": {
    "label": "Icon",
    "format": "image"
  },
  "bannerUrl": {
    "label": "Banner",
    "format": "image"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "totalKarma": {
    "label": "Total Karma",
    "format": "number"
  },
  "linkKarma": {
    "label": "Link Karma",
    "format": "number"
  },
  "commentKarma": {
    "label": "Comment Karma",
    "format": "number"
  },
  "isGold": {
    "label": "Gold",
    "format": "boolean"
  },
  "isModerator": {
    "label": "Moderator",
    "format": "boolean"
  },
  "isEmployee": {
    "label": "Employee",
    "format": "boolean"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "verifiedEmail": {
    "label": "Verified Email",
    "format": "boolean"
  },
  "acceptFollowers": {
    "label": "Accepts Followers",
    "format": "boolean"
  },
  "adultContent": {
    "label": "NSFW",
    "format": "boolean"
  },
  "isBlocked": {
    "label": "Blocked",
    "format": "boolean"
  },
  "isSuspended": {
    "label": "Suspended",
    "format": "boolean"
  },
  "daysActive": {
    "label": "Days Active",
    "format": "number"
  },
  "subredditName": {
    "label": "Subreddit",
    "format": "text"
  },
  "subredditTitle": {
    "label": "Subreddit Title",
    "format": "text"
  },
  "subredditDescription": {
    "label": "Subreddit Description",
    "format": "text"
  },
  "subredditSubscribers": {
    "label": "Profile Subscribers",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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