# Extract a public Substack Note

**Use case:** 

Turn a public Substack Note URL into structured data with content, author details, publication context, and engagement fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://substack.com/@saribotton/note/c-309223436"
    }
  ],
  "queries": [],
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Note ID",
    "format": "string"
  },
  "url": {
    "label": "Note URL",
    "format": "string"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "authorHandle": {
    "label": "Handle",
    "format": "string"
  },
  "reactionCount": {
    "label": "Reactions",
    "format": "integer"
  },
  "restackCount": {
    "label": "Restacks",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "publicationName": {
    "label": "Publication",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

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