# Cravvol Web Scraper

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

Scrapes and retrieves content from a given URL for AI agents, with pay-per-request billing via x402/USDC

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/scrape
- Price: $0.02/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-scraper-90edbcdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LFro33aoxzalWuNaauKCl

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-scraper-90edbcdb -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/product-page and return whatever text and data is on it?

## When to prefer this

Choose this endpoint when you need a simple, no-auth, pay-as-you-go web scraping call for a single URL and want to avoid subscription commitments. Ideal for AI agents that need occasional or unpredictable web access without provisioning credentials. Best for lightweight content extraction where $0.02/call economics make sense.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — success:false returned
- URL is malformed or missing — validation error
- Payment via x402 fails or USDC balance insufficient — 402 Payment Required
- Target site blocks scraping bots — may return empty or partial data
- Rate limiting or timeout on the target server side — incomplete response

## 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 indicating whether the scrape worked and a 'data' object containing the scraped page content from the target URL.

## Request schema (JSON Schema)

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

## 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-scraper-90edbcdb/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)
