# Substack Analytics – Track Likes, Comments & Post Stats

**Use case:** 

Analyze any Substack's engagement: likes, comments, publish dates and word counts for recent posts. Benchmark newsletters and export to CSV or JSON.

## Input

```json
{
  "newsletterUrls": [
    {
      "url": "https://platformer.substack.com"
    },
    {
      "url": "https://www.slowboring.com"
    },
    {
      "url": "https://astralcodexten.substack.com"
    }
  ],
  "postScrapingMode": "information",
  "maxPostsPerNewsletter": 12,
  "delayBetweenRequests": 3000,
  "maxRetries": 2
}
```

## Output

```json
{
  "publication_name": {
    "label": "Newsletter",
    "format": "text"
  },
  "title": {
    "label": "Post Title",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments_count": {
    "label": "Comments",
    "format": "number"
  },
  "word_count": {
    "label": "Words",
    "format": "number"
  },
  "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.