# Crawl Related Pages Finder

> Crawl Related Pages Finder is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Given a URL, finds and returns a list of related web pages

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/related
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-related-pages-finder-60d73694
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FpP5Ccm8LJiuPMRdkfUu1

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-60d73694 -d '<json body>'
```

Example prompt: Can you find 10 pages related to https://techcrunch.com/2024/01/01/ai-trends/ for me?

## When to prefer this

Use this endpoint when an agent needs to discover topically related or linked pages for a given URL without needing authentication or a subscription — ideal for pay-per-use workflows using USDC via x402 where you want to explore content neighborhoods around a known URL.

## Known failure modes

- Invalid or unreachable URL returns error
- Payment not processed via x402 results in 402 Payment Required
- No related pages found returns empty data
- Malformed request body missing required url field returns 400

## 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 related pages discovered for the given URL — typically a list of related URLs or page metadata.

## 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-60d73694/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)
