# Crawol Web Extraction

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

Extracts and scrapes web content from a given URL, returning structured data, with per-request USDC micropayment via x402.

## Facts

- Endpoint: POST https://crawol.vercel.app/api/extract
- Price: $0.05/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-extraction-bcae09a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiUtAzbWwmNebPHHby_MU

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-extraction-bcae09a2 -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/article and return the structured data from that page?

## When to prefer this

Use this endpoint when an AI agent needs to fetch and extract content from an arbitrary URL without setting up API keys or subscriptions — ideal for one-off or pay-as-you-go scraping scenarios where USDC micropayment via x402 is acceptable. Prefer it for lightweight, real-time web content retrieval tasks in agentic workflows.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false with no data
- Invalid or malformed URL input — likely a 400 or validation error
- Target page blocks scraping (e.g. bot protection) — may return empty or partial data
- Payment failure via x402 — request blocked before processing
- Timeout on slow or heavy pages — partial or no data 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 extracted content from the specified URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to extract from"
  }
 }
}
```

## 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-extraction-bcae09a2/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)
