# Create a Substack Newsletter Digest

**Use case:** 

Scrape recent Substack posts and generate an HTML newsletter digest for content monitoring, research, and editorial review.

## Input

```json
{
  "substackUrls": [
    "https://tedhope.substack.com"
  ],
  "scrapingMethod": "sitemap",
  "maxPostsPerSubstack": 5,
  "batchSize": 1,
  "postConcurrency": 2,
  "generateNewsletterDigest": true
}
```

## Output

```json
{
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "subheading": {
    "label": "Subheading",
    "format": "string"
  },
  "author_name": {
    "label": "Author",
    "format": "string"
  },
  "date": {
    "label": "Published",
    "format": "string"
  },
  "free_or_paid": {
    "label": "Access",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "comments": {
    "label": "Comments",
    "format": "integer"
  },
  "restacks": {
    "label": "Restacks",
    "format": "integer"
  },
  "content_type": {
    "label": "Content type",
    "format": "string"
  },
  "substack_url": {
    "label": "Newsletter",
    "format": "string"
  },
  "post_url": {
    "label": "Post",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Substack Newsletter Content Scraper](https://apify.com/scraper_guru/substack-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scraper_guru/substack-scraper) to learn more, explore other use cases, and run it yourself.