# x402.shizu.me Web Page Digest

> x402.shizu.me Web Page Digest is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches any public web page, strips boilerplate, and returns a Claude-powered LLM summary in a single API call

## Facts

- Endpoint: GET https://x402.shizu.me/digest
- 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/x402-shizu-me-web-page-digest-df1a2f0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Pr3i7I7V_KVCJxBKRDD1

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 x402-shizu-me-web-page-digest-df1a2f0a
```

Example prompt: Can you summarize the content at https://techcrunch.com/2024/05/01/openai-launches-gpt5/ and focus on the pricing details?

## When to prefer this

Choose this endpoint when you need to go from a raw public URL to a clean, LLM-generated summary in a single API call without managing a multi-step scrape-then-prompt pipeline. It is ideal for agents that need to quickly digest web pages, news articles, or documentation pages without setting up their own scraping and LLM infrastructure. Prefer it over DIY pipelines when cost simplicity ($0.02 flat) and low integration overhead matter. Not suitable for pages requiring authentication, JavaScript-heavy SPAs, or large-scale batch crawling jobs.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns an error indicating the page could not be fetched
- URL points to a non-HTML resource (PDF, binary) that cannot be parsed — may return an error or degraded summary
- Instructions parameter exceeds 200 characters — request rejected or instructions truncated
- Rate limiting or payment failure via x402 protocol — 402 Payment Required response
- Target page has heavy JavaScript rendering that prevents static fetch — may return empty or partial content
- Invalid URL format provided — returns a validation error

## How this service works

Read any public web page and get a clean LLM summary in ONE call — fetch, boilerplate removal, and Claude summarization fused. Query: url (public http/https); instructions? (optional steer, e.g. 'focus on pricing', <=200 chars). Returns {url, title, summary, word_count}. Replaces a scrape->prompt->parse pipeline with a single flat-price call.

## Output

Returns a JSON object with four fields: the original URL, the page title as extracted from the page, a clean LLM-generated summary of the page content, and the word count of the source document — all in a single response with no intermediate steps.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/article",
  "title": "Example Article",
  "summary": "The article argues that...",
  "word_count": 1200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-web-page-digest-df1a2f0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
