# ScrapFly Crawl Links Extractor

> ScrapFly Crawl Links Extractor is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Extracts all hyperlinks found on a given web page URL

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/links
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-links-extractor-46ca2d0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__ZYXR_sm1C4YzB-Km4FKm

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-46ca2d0e -d '<json body>'
```

Example prompt: Can you extract all the hyperlinks from https://example.com/blog so I can see what pages and external sites it links to?

## When to prefer this

Use this endpoint when you need a quick, flat list of all hyperlinks on a single page — ideal for site mapping, link auditing, or discovering related content. Prefer this over a full-page scrape when you only need links, not page content or structured data.

## Known failure modes

- URL is unreachable or returns non-200 status — success false, empty data
- URL points to a JavaScript-heavy SPA where links are dynamically rendered and may not be captured
- Malformed or invalid URL input causes request failure
- Page behind authentication or CAPTCHA returns limited or no links
- Rate limiting or bot protection on the target site blocks the crawl

## 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 (URLs) found on the specified web page, including internal and external links extracted from anchor tags and other link elements.

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