# Search Reddit with a date cutoff

**Use case:** 

Search recent Reddit posts for TypeScript with an exact date window, then export clean records for trend research and reporting.

## Input

```json
{
  "subreddits": [
    "programming"
  ],
  "searches": [
    "TypeScript"
  ],
  "startUrls": [],
  "sort": "new",
  "time": "all",
  "postDateLimit": "14d",
  "includeNSFW": false,
  "trackingKeywords": [],
  "excludeKeywords": [],
  "skipComments": true,
  "maxComments": 100,
  "maxCommentDepth": 10,
  "onlyNew": false,
  "outputFormat": "default",
  "minimumRelevanceScore": 25,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "body": {
    "label": "Comment",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "url": {
    "label": "Reddit URL",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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