# Web Scrape Links

> Web Scrape Links is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Extracts all hyperlinks from a given webpage URL, with options to filter by domain, deduplicate, limit count, and include/exclude anchor links

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/web-scrape-links
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-scrape-links-414224b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OOaEQInp3wpYNMorFUQRc

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 web-scrape-links-414224b3
```

Example prompt: Can you grab all the unique links from https://example.com/blog — only return links pointing to the same domain, and cap it at 100 results?

## When to prefer this

Use this endpoint when you need a fast, no-account-required link enumeration from any public webpage, especially for crawl seeding, sitemap discovery, outbound link auditing, or navigation mapping. Prefer this over full-page scraping when only the href values matter, not the surrounding content.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — no links returned
- URL parameter missing — request rejected with validation error
- Target page has no extractable links — empty list returned
- URL points to non-HTML content (PDF, image, etc.) — no links or error returned
- Rate limit or payment failure via x402 — 402 response requiring USDC payment on Base

## How this service works

Extracts all hyperlinks from any public webpage. Returns href URLs normalized to absolute URLs with visible link text. Filters out javascript:, mailto:, data: schemes. Optionally restrict to same-domain links, deduplicate, or include #anchor links. Useful for crawlers, sitemap builders, link graph analysis, and content audits.

## Output

A list of up to 500 deduplicated hyperlink URLs extracted from the target webpage, optionally filtered to same-domain links only and optionally including anchor (#section) links. Each entry is a resolved href value found on the page.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://example.com",
   "limit": 50,
   "deduplicate": "true",
   "include_anchors": "false",
   "same_domain_only": "true"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-scrape-links-414224b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
