# Crawl – Related Pages Finder

> Crawl – Related Pages Finder is a paid API for AI agents from cr4vvol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Given a URL, returns a list of related web pages discovered via web crawling, paid per-request in USDC

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/related
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-related-pages-finder-ffdf957b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lY3c_4_UkprV8dPiG1syx

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-related-pages-finder-ffdf957b -d '<json body>'
```

Example prompt: Find me 10 web pages related to https://openai.com/blog/chatgpt — I want to discover similar or connected content on the web.

## When to prefer this

Choose this endpoint when you need to discover web pages that are related or similar to a given URL without setting up auth or subscriptions — ideal for AI agents doing on-demand content discovery or link graph exploration, paying only per call in USDC via x402.

## Known failure modes

- Invalid or unreachable URL returns error or empty results
- Count parameter exceeds service limits, returning fewer results than requested
- Payment via x402 fails due to insufficient USDC balance, blocking the request
- Rate limiting or upstream crawl failure returns a non-success response
- Malformed URL input causes a 400-level error

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a `success` boolean and a `data` object containing the list of related pages found for the given URL, up to the requested count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to find related pages for"
  },
  "count": {
   "type": "number",
   "description": "Number of results"
  }
 }
}
```

## 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-related-pages-finder-ffdf957b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
