# Curate Top Content from Reddit's Most Active Users

**Use case:** 

Scrape the most popular recent posts from a curated list of highly active and influential Reddit users. This task is ideal for content curation, trend spotting,

## Input

```json
{
  "usernames": [
    "karmanaut",
    "here_comes_the_king",
    "rightcoastguy"
  ],
  "maxPosts": 40,
  "section": "submitted",
  "sort": "hot"
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "title": {
    "label": "Title"
  },
  "subreddit_prefixed": {
    "label": "Subreddit prefixed"
  },
  "score": {
    "label": "Score"
  },
  "num_comments": {
    "label": "Num comments"
  },
  "permalink": {
    "label": "Permalink"
  },
  "created_at": {
    "label": "Created at"
  }
}
```

## About this Actor

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