# Cravvol Web Compare

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

Fetches and compares the content of two web pages side-by-side, returning structured comparison data

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/compare
- 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/cravvol-web-compare-662dc7d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OV3DjfnHcjbpV3HOskPnC

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 cravvol-web-compare-662dc7d1 -d '<json body>'
```

Example prompt: Can you compare the content of https://example.com/product-a and https://competitor.com/product-a and tell me what's different between them?

## When to prefer this

Use this endpoint when you need to programmatically compare the content of two specific web pages without setting up authentication or subscriptions — ideal for competitive analysis, A/B content checks, or detecting differences between two URLs. Pay-per-use USDC pricing via x402 makes it suitable for sporadic agent-driven comparisons.

## Known failure modes

- One or both URLs are unreachable or return non-200 status — success: false with error details
- Invalid or malformed URLs provided — validation error returned
- Payment not processed via x402 — 402 Payment Required response
- Target page is behind authentication or bot protection — empty or partial content returned
- Rate limiting by target servers — timeout or partial response

## 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 and compared content from both URLs, highlighting structural or textual differences between the two pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "urlA",
  "urlB"
 ],
 "properties": {
  "urlA": {
   "type": "string",
   "description": "First URL"
  },
  "urlB": {
   "type": "string",
   "description": "Second URL"
  }
 }
}
```

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