# Cerwal Web Crawler

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

Crawls and scrapes web pages starting from a seed URL, returning page content for AI agent use, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://cerwal.vercel.app/api/crawl
- Price: $0.3/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-crawler-c1724df6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xp90-WwehLMsyhWhliAKg

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-crawler-c1724df6 -d '<json body>'
```

Example prompt: Can you crawl https://example.com for me and pull back the content from up to 5 pages starting from the homepage?

## When to prefer this

Choose this endpoint when you need pay-per-use web crawling with no subscription or API key setup, especially in agentic pipelines where USDC micropayments via x402 are acceptable. Ideal for one-off or infrequent scraping tasks where provisioning a full scraping service is overkill.

## Known failure modes

- URL is unreachable or returns a non-200 status — crawl may return success: false
- maxPages not specified — defaults to a single page or service default
- Target site blocks crawlers via robots.txt or bot detection — partial or empty data returned
- Invalid or malformed URL input — request rejected
- Payment failure via x402 — request not processed

## 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 page content from the crawled URL(s).

## 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/cerwal-web-crawler-c1724df6/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)
