Apify Substack Scraper
/install apify-substack-scraper
Substack Scraper
Scrape Substack newsletters using an Apify Actor via the REST API.
Actor ID
BULaGFURBV7WG3K81
Prerequisites
APIFY_TOKENenvironment variable must be setcurlandjqmust be available
Workflow
Step 1: Confirm parameters with user
Ask what they want to scrape. Supported input fields:
urls(array of strings) - Substack publication URLs to scrapemaxArticles(integer) - max articles per publicationincludeContent(boolean) - include full article text
Step 2: Run the Actor
RESULT=$(curl -s -X POST "https://api.apify.com/v2/acts/BULaGFURBV7WG3K81/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"urls": ["https://example.substack.com"], "maxArticles": 20}')
echo "$RESULT" | jq '.'
Step 3: Poll and fetch (if async)
RUN_ID=$(curl -s -X POST "https://api.apify.com/v2/acts/BULaGFURBV7WG3K81/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"urls": ["https://example.substack.com"], "maxArticles": 100}' | jq -r '.data.id')
curl -s "https://api.apify.com/v2/actor-runs/$RUN_ID?token=$APIFY_TOKEN" | jq -r '.data.status'
curl -s "https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?token=$APIFY_TOKEN" | jq '.'
Step 4: Present results
Summarize articles: titles, authors, dates, engagement. Offer JSON/CSV export.
Error Handling
- If APIFY_TOKEN not set:
export APIFY_TOKEN=your_token - If run FAILS: check log endpoint
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install apify-substack-scraper - After installation, invoke the skill by name or use
/apify-substack-scraper - Provide required inputs per the skill's parameter spec and get structured output
What is Apify Substack Scraper?
Scrape Substack newsletters and articles. Use when user asks to search Substack, find newsletter posts, extract Substack content, or monitor Substack publica... It is an AI Agent Skill for Claude Code / OpenClaw, with 299 downloads so far.
How do I install Apify Substack Scraper?
Run "/install apify-substack-scraper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Apify Substack Scraper free?
Yes, Apify Substack Scraper is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Apify Substack Scraper support?
Apify Substack Scraper is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Apify Substack Scraper?
It is built and maintained by Marcin Dudek (@marcindudekdev); the current version is v1.0.0.