# Export Substack Posts – Download Articles to JSON/CSV

**Use case:** 

Download full Substack articles with title, author, word count and complete text. Bulk-export recent posts per newsletter to JSON, CSV or Excel.

## Input

```json
{
  "newsletterUrls": [
    {
      "url": "https://platformer.substack.com"
    },
    {
      "url": "https://www.lennysnewsletter.com/"
    },
    {
      "url": "https://newsletter.pragmaticengineer.com"
    }
  ],
  "postScrapingMode": "information_and_content",
  "maxPostsPerNewsletter": 12,
  "delayBetweenRequests": 3000,
  "maxRetries": 2
}
```

## Output

```json
{
  "publication_name": {
    "label": "Newsletter",
    "format": "text"
  },
  "title": {
    "label": "Post Title",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "word_count": {
    "label": "Words",
    "format": "number"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "posts": {
    "label": "Posts"
  }
}
```

## About this Actor

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