# Cerawal Related Pages Finder

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

Finds web pages related to a given URL, enabling discovery of similar or associated content across the web

## Facts

- Endpoint: POST https://cerawal.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/cerawal-related-pages-finder-c7148dbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3KcN5HqJ1EXabf_WSlzBe

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

Example prompt: Can you find 10 pages related to https://example.com/article-about-climate-change and show me what comes up?

## When to prefer this

Choose this endpoint when you need to discover web pages topically or structurally related to a known URL, without requiring authentication or subscriptions — especially useful for AI agents that can pay per request in USDC via x402. Prefer it for quick, on-demand related-content discovery without committing to a monthly plan.

## Known failure modes

- Invalid or unreachable URL returns an error or empty results
- Payment failure via x402 if USDC balance is insufficient
- Rate limiting or server errors from the Vercel deployment
- Malformed URL input causes request rejection
- No related pages found for obscure or newly published URLs

## 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 provided URL, typically including links or metadata about similar or associated web content.

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