# Cravvol Web Crawl

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

Crawls a seed URL and up to N pages, returning scraped web content for AI agent consumption, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/crawl
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvol-web-crawl-af03a11a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXU8T7GVx_k8Fw8KQ1xLj

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-crawl-af03a11a -d '<json body>'
```

Example prompt: Crawl https://example-news-site.com and scrape up to 10 pages, then return all the content you find.

## When to prefer this

Choose this endpoint when you need pay-per-request web crawling with no subscription or API key setup — ideal for AI agents that need to scrape one or more pages on demand and pay in USDC via x402. Best for lightweight, programmatic web content extraction pipelines.

## Known failure modes

- Invalid or unreachable seed URL returns failure with success:false
- maxPages set too high may time out or return partial results
- Payment failure via x402 prevents the crawl from executing
- Blocked by target site's robots.txt or anti-scraping measures leading to empty or error data
- Malformed URL input causes request rejection

## 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 from the crawled pages starting at the seed URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Seed URL"
  },
  "maxPages": {
   "type": "number",
   "description": "Max pages to crawl"
  }
 }
}
```

## 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-crawl-af03a11a/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)
