# Generate Content Ideas from Trending Reddit Comments

**Use case:** 

Discover popular topics and user questions by scraping high-scoring comments from trending Reddit posts. This provides a rich source of content ideas, ensuring 

## Input

```json
{
  "postUrls": [
    {
      "url": "https://www.reddit.com/r/AskReddit/comments/uvwxyz/what_is_something_everyone_should_know_but_doesnt/"
    },
    {
      "url": "https://www.reddit.com/r/personalfinance/comments/wxyzab/what_is_your_best_financial_advice_for_someone_in_their_20s/"
    }
  ],
  "maxComments": 500,
  "expandThreads": true,
  "minScore": 50,
  "maxDepth": 1,
  "excludeDeleted": true,
  "minWordCount": 15
}
```

## Output

```json
{
  "author": {
    "label": "Author"
  },
  "text": {
    "label": "Text"
  },
  "score": {
    "label": "Score"
  },
  "depth": {
    "label": "Depth"
  },
  "permalink": {
    "label": "Permalink"
  },
  "created_at": {
    "label": "Created at"
  },
  "is_op": {
    "label": "Is op"
  }
}
```

## About this Actor

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