# Cerwal Substack Scraper

> Cerwal Substack Scraper is a paid API for AI agents from cerwal.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and extracts content from a Substack publication URL, returning structured post or profile data.

## Facts

- Endpoint: POST https://cerwal.vercel.app/api/substack
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cerwal-substack-scraper-928aec37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SZgxVJsorycy4w7f7f88m

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 cerwal-substack-scraper-928aec37 -d '<json body>'
```

Example prompt: Can you pull the content from this Substack post for me — https://example.substack.com/p/my-post — and tell me what it says?

## When to prefer this

Use this endpoint when you specifically need to extract content from a Substack URL without requiring authentication or a subscription. It is ideal for AI agents that need to read newsletter content on-demand and pay per request in USDC via x402, avoiding API key management or monthly subscription overhead.

## Known failure modes

- Invalid or non-Substack URL returns an error or empty data
- Paywalled content may return partial or no article body
- Network timeouts if Substack is slow to respond
- Malformed URL input causes request failure
- Substack may block scraping, resulting in empty or error response

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the scraped Substack page content, which may include post body text, title, author, publication metadata, and other structured fields extracted from the given URL.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cerwal-substack-scraper-928aec37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cerwal.vercel.app](https://www.zero.xyz/host/cerwal.vercel.app/llms.txt)
