# Monitor the Newest Posts in Any Subreddit

**Use case:** 

Track a subreddit as it updates: newest posts with title, body, author, score, comment count and permalink. Export to CSV, JSON or Excel. No API key.

## Input

```json
{
  "subreddit": "technology",
  "sortType": "new",
  "limit": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Body",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "subreddit": {
    "label": "Subreddit",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "num_comments": {
    "label": "Comments",
    "format": "number"
  },
  "created_utc": {
    "label": "Created (UTC)",
    "format": "number"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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