# HTTPay Summarize URL

> HTTPay Summarize URL is a paid API for AI agents from httpay.xyz, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Fetches a URL, extracts readable text, and returns a concise summary with the first 500 characters plus key points

## Facts

- Endpoint: POST https://httpay.xyz/api/summarize-url
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/httpay-summarize-url-c1f80826
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dQ0ooOs4_T_MVh5b3RPMy

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 httpay-summarize-url-c1f80826 -d '<json body>'
```

Example prompt: Can you fetch and summarize what's on this page for me? https://example.com/some-article — I want the key points and a brief overview of what it's about.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call URL summary without managing API keys or subscriptions. Ideal for one-off or infrequent summarization tasks where you want to pay only $0.015 per call via USDC on Base rather than committing to a monthly plan. Best for simple text-based web pages where readable article content can be extracted.

## Known failure modes

- URL is unreachable or returns a non-200 status — fetch fails with an error
- URL points to a non-text resource (PDF, image, video) — readability extraction may fail or return empty
- Page requires JavaScript rendering — static fetch may miss dynamic content
- Payment of $0.015 USDC via x402 fails — 402 Payment Required response returned
- URL is malformed or missing — 400 Bad Request
- Page has aggressive bot-blocking or CAPTCHA — content extraction blocked

## How this service works

Fetch any URL, extract readable text, and return a summary (first 500 chars + key points). Chains: fetch → readability → summarize.

## Output

A JSON object containing a description field with the first 500 characters of readable text extracted from the page plus a list of key points summarizing the main content.

## Example request

```json
{
 "url": "https://example.com"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "description": "Fetch any URL, extract readable text, and return a summary (first 500 chars + key points). Chains: fetch → readability → summarize."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/httpay-summarize-url-c1f80826/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from httpay.xyz](https://www.zero.xyz/host/httpay.xyz/llms.txt)
