# Find content ideas on Reddit

**Use case:** 

Scrape public Reddit posts, comments, subreddit feeds, user feeds, or keyword search results for research, monitoring, and AI datasets. Use it for content...

## Input

```json
{
  "urls": [
    {
      "url": "https://www.reddit.com/r/technology/"
    },
    {
      "url": "https://www.reddit.com/r/webscraping/"
    }
  ],
  "searchQuery": "\"how do I\" \"web scraping\"",
  "searchSubreddit": "technology",
  "sort": "relevance",
  "timeFilter": "year",
  "maxPostsPerSource": 100,
  "includeComments": true,
  "maxCommentsPerPost": 20,
  "commentContextMode": "focused",
  "commentContextDepth": 3,
  "retryCount": 2,
  "initialRetryDelayMillis": 750,
  "requestPacingMillis": 750,
  "mcpMode": "off",
  "mcpInstruction": "Send a concise Reddit monitoring digest to #social-listening.",
  "maxMcpRecords": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "thingId": {
    "label": "Thing ID",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "body": {
    "label": "Comment body",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "createdAt": {
    "label": "Created at",
    "format": "date"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "parentId": {
    "label": "Parent ID",
    "format": "text"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source RSS URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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