# Crawl Web Scraper (x402)

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

Scrapes the content of a given URL and returns the extracted data, billed per-request in USDC via x402 with no auth required.

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/scrape
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-web-scraper-x402-a9fca09e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GbdEg538bEN_ti7Bvv82I

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 crawl-web-scraper-x402-a9fca09e -d '<json body>'
```

Example prompt: Can you scrape the content of https://example.com/article and tell me what's on that page?

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-use web scraping with no API key or subscription setup, especially in agent workflows that require on-demand access to web content billed in USDC via x402.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false
- Payment in USDC fails or is insufficient — request rejected before scraping
- URL is malformed or missing — validation error
- Target site blocks scraping (bot protection, Cloudflare, etc.) — data may be empty or error returned

## 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 provided 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/crawl-web-scraper-x402-a9fca09e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
