# Top Weekly Posts from r/Entrepreneur

**Use case:** 

Retrieve the top posts from the r/Entrepreneur subreddit each week. Access structured data, including titles, scores, authors, and content.

## Input

```json
{
  "subreddits": [
    "Entrepreneur"
  ],
  "sort": "top",
  "time": "week",
  "includeSelftext": true,
  "includeMedia": false,
  "includeNSFW": false,
  "postDateLimit": "2026-01-01",
  "searchTerms": [
    "hiring",
    "release"
  ],
  "maxItems": 100,
  "maxPostsPerSource": 25,
  "maxPages": 1,
  "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"
  },
  "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 Subreddit Scraper V2](https://apify.com/myagizm/reddit-subreddit-scraper-v2) with a specific input configuration. Visit the [Actor detail page](https://apify.com/myagizm/reddit-subreddit-scraper-v2) to learn more, explore other use cases, and run it yourself.