# Cerawal Web Scrape

> Cerawal Web Scrape is a paid API for AI agents from cerawal.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 the extracted data, paid per-request in USDC via x402 with no API key or subscription required.

## Facts

- Endpoint: POST https://cerawal.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/cerawal-web-scrape-246fc2b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BFnprg-1N6xfvw3mfVsqg

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 cerawal-web-scrape-246fc2b6 -d '<json body>'
```

Example prompt: Scrape the content of https://example.com/product-page and give me back everything on that page.

## When to prefer this

Choose this endpoint when you need one-off, on-demand web page scraping without setting up an API key or a subscription. It is ideal for AI agents that need to access web content sporadically and want to pay only for what they use via USDC micro-payments. Prefer it over larger scraping platforms when simplicity, low commitment, and crypto-native payment (x402) are priorities.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — success may be false or data may be empty
- Page is JavaScript-heavy and content not fully rendered at scrape time — returned data may be incomplete
- Payment via x402 fails or is insufficient — request is rejected before scraping begins
- Malformed or missing URL in request body — validation error returned
- Target site blocks scrapers via bot detection or CAPTCHA — may return empty or partial data

## 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 boolean 'success' field and a 'data' object containing the scraped content from the target URL. The exact structure of 'data' reflects what was extracted from the page.

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