# Substack Publication Posts Scraper

**Use case:** 

Scrape the newest posts from any Substack publication with titles, authors, and content, delivered as clean structured data.

## Input

```json
{
  "maxItems": 3,
  "publications": [
    "lex",
    "stratechery"
  ],
  "sortBy": "new",
  "postType": "all"
}
```

## Output

```json
{
  "publication": {
    "label": "Publication",
    "format": "text"
  },
  "publicationName": {
    "label": "Publication Name",
    "format": "text"
  },
  "publicationSubscribersFormatted": {
    "label": "Publication Subscribers Formatted",
    "format": "text"
  },
  "publicationDescription": {
    "label": "Publication Description",
    "format": "text"
  },
  "postId": {
    "label": "Post Id",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "socialTitle": {
    "label": "Social Title",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "canonicalUrl": {
    "label": "Canonical Url",
    "format": "link"
  },
  "postDate": {
    "label": "Post Date",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  }
}
```

## About this Actor

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