# Daily Hot Posts from Technology Subreddit

**Use case:** 

Collect the hottest posts from the technology subreddit every day. Returns structured data including post details and self-text.

## Input

```json
{
  "subreddits": [
    "technology"
  ],
  "startUrls": [
    {
      "url": "https://www.reddit.com/r/pics/"
    }
  ],
  "users": [
    "spez",
    "kn0thing"
  ],
  "communities": [
    "technology",
    "science"
  ],
  "searchQueries": [
    "python developer"
  ],
  "searchFor": [
    "posts"
  ],
  "searchInSubreddits": [
    "forhire"
  ],
  "sort": "hot",
  "time": "day",
  "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": 100,
  "maxPages": 1,
  "ignoreStartUrls": false,
  "maxRetries": 3,
  "requestDelayMs": 300,
  "debug": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "flair": {
    "label": "Flair",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "numComments": {
    "label": "Comments",
    "format": "integer"
  },
  "createdUtc": {
    "label": "Created (UTC)",
    "format": "string"
  },
  "selftext": {
    "label": "Text",
    "format": "string"
  },
  "outboundUrl": {
    "label": "Link",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "mediaUrls": {
    "label": "Media",
    "format": "array"
  },
  "nsfw": {
    "label": "NSFW",
    "format": "boolean"
  },
  "url": {
    "label": "Permalink",
    "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.