# ScrapFly Substack Crawler

> ScrapFly Substack Crawler is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Crawls and extracts content from a Substack URL, returning structured data about the page

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/substack
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-substack-crawler-4bf72814
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y3kpVSchY9KqdVmFLzd8a

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability scrapfly-substack-crawler-4bf72814 -d '<json body>'
```

Example prompt: Can you scrape this Substack post and give me the full article content? The URL is https://example.substack.com/p/my-newsletter-post

## When to prefer this

Choose this endpoint when you specifically need to extract content from Substack newsletter pages — posts, author pages, or publication homepages — and want a structured response without managing browser automation yourself. Prefer this over generic web scrapers when Substack-specific rendering or anti-bot handling is required.

## Known failure modes

- Invalid or non-Substack URL returns success: false
- URL is behind a hard paywall that blocks crawling
- Network timeout or upstream crawl failure
- Malformed URL input causes request rejection
- Rate limiting if too many requests are made in quick succession

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the extracted content from the Substack page, such as article text, metadata, and other structured fields parsed from the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "url"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-substack-crawler-4bf72814/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
