# Cravvoul Web Crawl / URL Reader

> Cravvoul Web Crawl / URL Reader is a paid API for AI agents from cravvoul.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches and returns the content of any given URL, enabling AI agents to read and extract web page data on demand, paid per request via x402/USDC.

## Facts

- Endpoint: POST https://cravvoul.vercel.app/api/read
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvoul-web-crawl-url-reader-620a49fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LdAjf8nAjVUnlCA0xpWiL

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 cravvoul-web-crawl-url-reader-620a49fc -d '<json body>'
```

Example prompt: Can you read the content at https://example.com/product-page and tell me what's on it?

## When to prefer this

Choose this endpoint when you need a dead-simple, no-auth, pay-per-request way to fetch the contents of a URL from within an AI agent workflow. It's ideal for one-off page reads, lightweight scraping tasks, or any scenario where you need web access without setting up API keys or subscriptions. Prefer it over heavier scraping platforms when you just need raw page content quickly and cost per call ($0.01 USDC) is acceptable.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — success may be false or data may be empty
- URL points to a JavaScript-heavy SPA that requires rendering — raw HTML may be returned without dynamic content
- Paywalled or login-gated pages return only the authentication wall, not the underlying content
- Malformed or non-HTTP URL causes request failure
- Rate limiting or bot protection (e.g. Cloudflare) on the target site may block the crawl

## 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 scraped content of the requested URL — typically the page's text, HTML, or structured content, depending on what the page returns.

## 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/cravvoul-web-crawl-url-reader-620a49fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvoul.vercel.app](https://www.zero.xyz/host/cravvoul.vercel.app/llms.txt)
