# ScrapFly Crawl Related URLs

> ScrapFly Crawl Related URLs is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Finds and returns URLs related to a given webpage via web crawling

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/related
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-related-urls-e2dbf68e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bkTPXonI5uMsumwfmDV7T

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-crawl-related-urls-e2dbf68e -d '<json body>'
```

Example prompt: Find up to 10 URLs related to https://techcrunch.com/2024/01/15/openai-funding-round/ by crawling its connected pages.

## When to prefer this

Use this endpoint when you need to programmatically discover URLs semantically or structurally related to a given page — useful for link graph analysis, content research, or building topic clusters around a seed URL. Prefer this over a general search API when you want crawl-derived related links rather than search-engine results.

## Known failure modes

- Invalid or unreachable URL returns success:false
- Count parameter ignored or capped at provider limit
- Target site blocks crawling resulting in empty data
- Malformed URL input causes request rejection
- Timeout on slow or unresponsive target domains

## 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 web content discovered from crawling pages linked to the submitted URL.

## 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-crawl-related-urls-e2dbf68e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
