# Cerwal Web Scraper

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

Scrapes the content of a given URL and returns structured data, with pay-per-request pricing via x402/USDC

## Facts

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

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 cerwal-web-scraper-e5cd40f3 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-request web scraping without signing up for a subscription or managing API keys — ideal for one-off fetches or AI agent workflows where cost control per call matters. Best when you need to retrieve content from a single URL quickly and cheaply using USDC micropayments.

## Known failure modes

- URL is unreachable or returns non-200 HTTP status
- URL is malformed or missing — returns validation error
- Target site blocks scraping (returns empty or incomplete data)
- Insufficient USDC balance — payment via x402 fails
- Timeout if target page is slow to load

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