# Daily Gaming News Scraper for r/gaming

**Use case:** 

Scrape the hottest daily posts from r/gaming. Get structured data for social listening and research in CSV or JSON format.

## Input

```json
{
  "subreddits": [
    "gaming"
  ],
  "sort": "hot",
  "timeFilter": "day",
  "maxPostsPerSub": 75,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "postId": {
    "label": "Post ID",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "permalink": {
    "label": "Permalink",
    "format": "string"
  },
  "selftext": {
    "label": "Self Text",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  }
}
```

## About this Actor

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