# ScrapFly Crawl Compare

> ScrapFly Crawl Compare is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Compares the crawled content of two URLs and returns a structured diff or similarity analysis

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/compare
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-compare-518bb093
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vWev8AD6Ac0WhAOtQIwpo

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 scrapfly-crawl-compare-518bb093 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need to programmatically compare the web content of two specific URLs — for example, detecting A/B test differences, verifying content parity between staging and production, or spotting changes between two competitor pages. Prefer this over scraping each URL separately when a structured diff or comparison output is needed in a single call.

## Known failure modes

- One or both URLs are unreachable or return non-200 status — success: false
- Invalid or malformed URL provided for urlA or urlB
- Target site blocks the crawler — success: false with error detail
- Payment fails or is insufficient — 402 response before processing
- Timeout on one or both URL fetches

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

A structured object with a success flag and a data object containing the comparison results between the two crawled URLs, including differences or similarity metrics between their content.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-crawl-compare-518bb093/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
