# Cravvol Related Pages Finder

> Cravvol Related Pages Finder is a paid API for AI agents from cravvol.vercel.app, 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://cravvol.vercel.app/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/cravvol-related-pages-finder-135dac75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1kmKrNGXHk6YfvzP_QZh

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

Example prompt: Find me 10 pages related to https://techcrunch.com/2024/01/15/openai-funding-round/ — I want to discover similar articles or pages on that topic.

## When to prefer this

Use this endpoint when you need to discover pages topically related to a known URL — for example, to build a content recommendation list, find competing articles, or explore a topic area starting from a seed URL. It requires no API key or subscription and uses pay-per-request USDC payments via x402, making it suitable for agent workflows with low or unpredictable usage volumes.

## Known failure modes

- Invalid or unreachable URL returns an error or empty results
- Count parameter ignored or capped if too large
- Payment failure via x402 results in 402 response and no data
- URL with no discoverable related pages returns empty data array
- Network timeout if target URL is slow to resolve

## 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 related pages for the submitted URL, typically including URLs and metadata about topically similar pages.

## 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/cravvol-related-pages-finder-135dac75/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)
