# ScrapFly Crawl Links Extractor

> ScrapFly Crawl Links Extractor 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-13).

Crawls a given URL and extracts all hyperlinks found on the page

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/links
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-links-extractor-31620504
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b8VI7gfWahmxv-FK2FyHt

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-links-extractor-31620504 -d '<json body>'
```

Example prompt: Can you crawl https://www.example.com and give me a list of all the links found on that page?

## When to prefer this

Use this endpoint when you need to enumerate all hyperlinks present on a single web page — for example, to map site structure, find outbound references, discover navigation paths, or seed a broader crawl. Prefer this over full-page scraping endpoints when only the link graph matters, not page content.

## Known failure modes

- Invalid or unreachable URL returns failure with no data
- URL blocked by anti-bot measures may return empty or partial results
- Malformed URL input causes validation error
- Payment failure on Base chain prevents request from being processed
- Timeout on slow-loading pages may return incomplete link set

## 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 all hyperlinks extracted from the crawled URL, including internal and external links found on the page.

## Request schema (JSON Schema)

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

## 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-links-extractor-31620504/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)
