# ScrapFly Related URL Crawler

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

Discovers and returns URLs related to a given webpage, useful for mapping content clusters or finding similar pages

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/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/scrapfly-related-url-crawler-af27ee03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ykrWZvHyNvwcPEjmzrfsP

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-related-url-crawler-af27ee03 -d '<json body>'
```

Example prompt: Find me 10 URLs related to https://techcrunch.com/2024/05/01/openai-announces-gpt-5/ so I can explore similar articles on that topic.

## When to prefer this

Use this endpoint when you need to discover pages topically or structurally related to a known URL — ideal for content research, SEO analysis, competitive intelligence, or building link graphs. Prefer this over a generic search when you already have a seed URL and want to find semantically or structurally adjacent content.

## Known failure modes

- Invalid or malformed URL returns error or success:false
- URL is unreachable or blocked returns failure
- count parameter set too high may return partial results
- Payment failure over x402/Base chain halts the request
- Rate limiting or service unavailability returns non-200 response

## How this service works

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

## Output

Returns a success boolean and a data object containing related URLs or pages discovered from the given input URL, up to the specified count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "url"
  },
  "count": {
   "type": "number",
   "description": "count"
  }
 }
}
```

## 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-related-url-crawler-af27ee03/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)
