# Monitor Reddit Subreddit for New Posts

**Use case:** 

Incrementally track only new Reddit posts since the last run, perfect for scheduled alerts and trend monitoring.

## Input

```json
{
  "mode": "monitor",
  "subreddits": [
    "MachineLearning",
    "artificial"
  ],
  "sort": "hot",
  "timeFilter": "all",
  "searchQuery": "",
  "restrictToSubreddit": false,
  "postUrls": [],
  "usernames": [],
  "includeComments": true,
  "maxCommentDepth": 10,
  "maxItems": 100,
  "maxPagesPerTarget": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "residentialFallback": true
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "subreddit": {
    "label": "Subreddit"
  },
  "author": {
    "label": "Author"
  },
  "title": {
    "label": "Title"
  },
  "score": {
    "label": "Score"
  },
  "numComments": {
    "label": "Num comments"
  },
  "createdAt": {
    "label": "Posted at",
    "format": "date"
  },
  "url": {
    "label": "Permalink",
    "format": "link"
  },
  "externalUrl": {
    "label": "Link",
    "format": "link"
  },
  "domain": {
    "label": "Domain"
  },
  "isSelf": {
    "label": "Is self"
  },
  "flair": {
    "label": "Flair"
  }
}
```

## About this Actor

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