# Crawol Web Crawl

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

Crawls a website starting from a seed URL, scraping and returning content from up to a specified number of pages, paid per request via x402/USDC

## Facts

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

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 crawol-web-crawl-cd3e9cbb -d '<json body>'
```

Example prompt: Can you crawl https://example.com for me and scrape up to 10 pages, pulling back all the content you find?

## When to prefer this

Choose this endpoint when an AI agent needs to programmatically access and extract content from a website across multiple pages without requiring API credentials or subscriptions, and is able to pay per-request in USDC via the x402 protocol. Ideal for agentic pipelines that need ad-hoc web data access with minimal setup.

## Known failure modes

- Invalid or unreachable seed URL returns failure or empty data
- maxPages set to 0 or negative may cause unexpected behavior
- Payment failure via x402 if insufficient USDC balance
- Rate limiting or blocking by target website may result in partial or empty data
- Malformed URL input causes request rejection

## 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 gathered from the crawled pages starting at the seed URL.

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