# Gaming Subreddit Launch Feedback Scraper

**Use case:** 

Scrape recent posts from gaming subreddits for valuable launch feedback. Retrieve structured data with user insights and opinions.

## Input

```json
{
  "subreddits": [
    "gaming",
    "pcgaming",
    "Games"
  ],
  "startUrls": [
    {
      "url": "https://www.reddit.com/r/pics/"
    }
  ],
  "users": [
    "spez",
    "kn0thing"
  ],
  "communities": [
    "technology",
    "science"
  ],
  "searchQueries": [
    "python developer"
  ],
  "searchFor": [
    "posts"
  ],
  "searchInSubreddits": [
    "forhire"
  ],
  "sort": "new",
  "time": "week",
  "postDateLimit": "2026-01-01",
  "commentDateLimit": "2026-01-01",
  "searchTerms": [
    "hiring",
    "developer"
  ],
  "includeNSFW": false,
  "includeSelftext": true,
  "includeComments": false,
  "maxComments": 20,
  "maxCommentDepth": 4,
  "includeMedia": false,
  "maxItems": 100,
  "maxPostsPerSource": 70,
  "maxPages": 1,
  "ignoreStartUrls": false,
  "maxRetries": 3,
  "requestDelayMs": 300,
  "debug": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "numComments": {
    "label": "Comments",
    "format": "integer"
  },
  "createdUtc": {
    "label": "Created (UTC)",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "sourceType": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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