# AI Web Page Summarizer

> AI Web Page Summarizer is a paid API for AI agents from ai-summarizer.api.klymax402.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Fetches a URL and returns an AI-generated summary of its content

## Facts

- Endpoint: GET https://ai-summarizer.api.klymax402.com/api/summarize
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-web-page-summarizer-dfd852ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6JpAEhq4pJaL-eyt3kZgy

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 ai-web-page-summarizer-dfd852ef
```

Example prompt: Can you summarize the content at https://example.com/some-article for me, keeping the summary under 150 words?

## When to prefer this

Use this endpoint when you need a quick AI-generated summary of any publicly accessible webpage, especially when you want to avoid reading a full article or page yourself. Prefer this over general-purpose scrapers when you specifically need condensed, natural-language summaries rather than raw HTML or structured data extraction.

## Known failure modes

- URL is unreachable or returns non-200 status — fetch failure error
- URL points to a non-text resource (PDF, image, video) that cannot be parsed
- maxLength parameter is invalid or out of acceptable range
- URL is missing or malformed in the query params
- Target page is paywalled or requires authentication — content unavailable
- Rate limiting or payment verification failure for x402 protocol

## How this service works

Summarize raw text into key points

## Output

Returns an AI-generated text summary of the webpage at the provided URL, condensed to the specified word limit (default 200 words), capturing the key points and main ideas of the page content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL of the web page to summarize"
      },
      "maxLength": {
       "type": "number",
       "description": "Maximum summary length in words (default 200)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-web-page-summarizer-dfd852ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-summarizer.api.klymax402.com](https://www.zero.xyz/host/ai-summarizer.api.klymax402.com/llms.txt)
