# reefjaco Web Page Summarizer

> reefjaco Web Page Summarizer is a paid API for AI agents from molecular-packs-metadata-docs.trycloudflare.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches a web page by URL and returns an ~8-sentence summary of its content

## Facts

- Endpoint: GET https://molecular-packs-metadata-docs.trycloudflare.com/summarize
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reefjaco-web-page-summarizer-920c46ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v5uNXuTJpkQCW7apvdupY

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 reefjaco-web-page-summarizer-920c46ce
```

Example prompt: Can you summarize the page at https://example.com/article-about-ai — just give me the key points in about 8 sentences?

## When to prefer this

Use this endpoint when you need a concise, human-readable ~8-sentence summary of any publicly accessible web page. It handles both the fetching and summarization in one call. Prefer it over raw fetch endpoints when you want a ready-to-use summary rather than raw text. Choose it over generic LLM summarization when you don't want to handle page fetching yourself.

## Known failure modes

- URL is not accessible or returns an error (403, 404, 500) — endpoint may return an error or empty summary
- URL is not an HTTPS URL — schema requires HTTPS, HTTP URLs may be rejected
- Page content is behind a login or paywall — extracted content may be incomplete or empty
- Page is very short or has little text — summary may be shorter than 8 sentences
- Network timeout fetching the target URL — may result in a timeout error

## How this service works

reefjaco GET /summarize Return ~8 sentence summary of the page

## Output

An approximately 8-sentence plain-text summary capturing the key points and content of the requested web page, returned as a text response.

## 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": "HTTPS URL of the page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reefjaco-web-page-summarizer-920c46ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from molecular-packs-metadata-docs.trycloudflare.com](https://www.zero.xyz/host/molecular-packs-metadata-docs.trycloudflare.com/llms.txt)
