# Crawl Compare - Web Page Comparison

> Crawl Compare - Web Page Comparison is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Fetches and compares two URLs side-by-side, returning a structured diff or analysis of their content

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/compare
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-compare-web-page-comparison-139e4e0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2XhE7oo3K7E6MzCegz7db

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 crawl-compare-web-page-comparison-139e4e0c -d '<json body>'
```

Example prompt: Compare these two web pages for me and tell me what's different: https://example.com/product-old and https://example.com/product-new

## 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 a subscription — ideal for competitive analysis, A/B page audits, changelog detection, or price comparison between two product URLs. Pay-per-use at $0.25 USDC makes it suitable for on-demand agent workflows.

## Known failure modes

- Invalid or unreachable URL returns error in data field with success: false
- One or both URLs timeout during scraping
- Payment of 0.25 USDC not fulfilled via x402 results in 402 response
- Malformed request missing urlA or urlB returns validation error
- URL behind authentication or bot protection cannot be scraped

## 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 comparison results between the two scraped URLs, likely including content differences, metadata contrasts, or structured field-by-field analysis of both 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/crawl-compare-web-page-comparison-139e4e0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
