# Cravvol Web Reader

> Cravvol Web Reader is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Fetches and returns the content of a given URL for AI agents, billed per request in USDC via x402 with no auth or subscription required.

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/read
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvol-web-reader-10e092f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JtXrLgVXdLx0aZH8WDkLw

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-web-reader-10e092f2 -d '<json body>'
```

Example prompt: Can you read the content at https://example.com/article and give me what's on the page?

## When to prefer this

Choose this endpoint when an AI agent needs to read or extract content from a specific URL on demand, without managing API keys or subscriptions, and is comfortable with per-request USDC micropayments via x402. Ideal for lightweight, one-off page reads in agent workflows.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false returned
- Malformed or missing URL in request body — likely 400 error
- Target page blocks scraping bots — partial or empty data returned
- Payment via x402 fails or is insufficient — request not processed
- Page takes too long to load — timeout with no data

## 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 retrieved content from the specified URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to read"
  }
 }
}
```

## 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-web-reader-10e092f2/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)
