# Webbersites Web Page Summarizer

> Webbersites Web Page Summarizer is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Fetches a public web page, extracts the main article text, and returns the top key sentences using TextRank — a fast, deterministic extractive summary with no AI.

## Facts

- Endpoint: GET https://api.webbersites.com/api/summarize
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-web-page-summarizer-9394a436
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gfiBSLef3OtDmXRgZr_dP

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 webbersites-web-page-summarizer-9394a436
```

Example prompt: Can you give me a 5-sentence summary of what this article is actually about? Here's the URL: https://www.bbc.com/news/technology-68123456

## When to prefer this

Choose this endpoint when you need a fast, cheap, deterministic extractive summary of a web page and don't need AI-generated paraphrasing or full-page content. Ideal when you want the literal key sentences from the source text (TextRank), not a rewritten digest. Prefer this over full-scrape endpoints when bandwidth and latency matter and you only need the gist. At $0.015/call it's cost-effective for high-volume summarization pipelines.

## Known failure modes

- URL is not publicly accessible or returns a non-200 status — fetch fails with an error
- Page has no extractable article content (e.g. pure JavaScript SPA, login-walled) — returns empty or low-quality summary
- sentences parameter out of range (not 1-10) — may return default of 3 or a validation error
- Invalid or malformed URL supplied — returns an error response
- Page is too large or times out — fetch may fail with a timeout error

## How this service works

Quick extractive summary of any web page: fetch the URL, extract the main article, and return the key sentences (TextRank) instead of the full text. For agents that want the gist of a page, not a full scrape. No AI — fast and deterministic. Want an abstractive AI rewrite, or to summarize a PDF/DOCX or your own text? POST /api/summarize-text ($0.01).

## Output

Returns a JSON object containing the page title, a concatenated summary string, an array of the top key sentences (up to 10), the word count of the summary, and the word count of the original article text.

## 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": "Public http(s) URL of the page to summarize"
      },
      "sentences": {
       "type": "number",
       "description": "How many key sentences to return (1-10, default 3)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "method": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "key_sentences": {
       "type": "array"
      },
      "summary_word_count": {
       "type": "number"
      },
      "original_word_count": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/article",
  "title": "Example Article",
  "method": "extractive (textrank)",
  "summary": "The most important sentence. The second key sentence. A third.",
  "key_sentences": [
   "The most important sentence.",
   "The second key sentence.",
   "A third."
  ],
  "summary_word_count": 42,
  "original_word_count": 1200
 }
}
```

## More

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