# Crawol Web Scraper

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

Scrapes and analyzes a given URL, returning structured data about the page content for AI agents

## Facts

- Endpoint: POST https://crawol.vercel.app/api/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawol-web-scraper-bfbdfffa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oKDhd51kr68PCvkfbkDX_

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-scraper-bfbdfffa -d '<json body>'
```

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

## When to prefer this

Use this endpoint when an AI agent needs to retrieve and analyze the content of a specific web page without requiring authentication or a subscription. It is particularly suitable for pay-per-request workflows using USDC via x402, making it ideal for agents that only occasionally need web access without ongoing commitments.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Payment failure via x402 protocol if USDC balance is insufficient
- Timeout if the target page is slow to respond
- Bot-blocking or anti-scraping measures on the target site may result in incomplete or empty data
- Malformed URL input may cause a validation error

## 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 structured information extracted from the target URL, such as page content, metadata, or other scraped attributes.

## Request schema (JSON Schema)

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

## 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-scraper-bfbdfffa/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)
