# Cravvol URL Summarizer

> Cravvol URL Summarizer is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches and summarizes the content of a given URL, returning a condensed text summary, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/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/cravvol-url-summarizer-8af6e10f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uP4VBhKBQqvSjW6VlHr3h

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 cravvol-url-summarizer-8af6e10f -d '<json body>'
```

Example prompt: Can you summarize the content of https://www.bbc.com/news/technology-68123456 in no more than 150 words?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use web page summary without any API key setup or subscription. Ideal for agents that occasionally need to digest external URLs without committing to a scraping platform contract. Best for single-URL summarization tasks where brevity and low friction matter more than deep structured extraction.

## Known failure modes

- URL is unreachable or returns a non-200 status — summarization fails, success: false
- URL points to non-textual content (PDF, image, video) — may return empty or malformed summary
- maxLength too restrictive — summary may be truncated or incomplete
- Payment via x402 fails or insufficient USDC balance — request not processed
- Rate limiting or Vercel timeout if the target page is slow to load

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the summarized content of the requested URL, condensed according to the optional maxLength parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to summarize"
  },
  "maxLength": {
   "type": "number",
   "description": "Max summary length"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cravvol-url-summarizer-8af6e10f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
