# Web Extract - Link Extractor

> Web Extract - Link Extractor is a paid API for AI agents from web-extract.bowling-anthony.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Extracts all hyperlinks from a web page as absolute URLs with anchor text, flagged as internal or external, capped at 300 links.

## Facts

- Endpoint: GET https://web-extract.bowling-anthony.workers.dev/links
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-extract-link-extractor-6795ca59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PUCwz_9HoGFeQC2dl9nVU

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-extract-link-extractor-6795ca59
```

Example prompt: Can you fetch all the hyperlinks on https://example.com/blog and tell me which ones are internal vs external links, along with their anchor text?

## When to prefer this

Use this endpoint when you need a structured list of all hyperlinks on a specific page, including anchor text and internal/external classification, without needing full page content. Prefer this over general scraping endpoints when link topology, SEO auditing, or outbound link discovery is the primary goal.

## Known failure modes

- Target URL is unreachable or returns a non-200 status, resulting in no links returned
- Page uses JavaScript-rendered links that are not present in static HTML, leading to incomplete results
- Page has more than 300 links — only the first 300 are returned
- Malformed or relative URLs on the source page may be excluded or misclassified
- Rate limiting or access restrictions on the target site may block the fetch

## How this service works

Every hyperlink on a page as absolute URLs with anchor text, flagged internal or external. Capped at 300.

## Output

A list of up to 300 hyperlinks found on the target page, each with its absolute URL, anchor text, and a flag indicating whether it is internal (same domain) or external (different domain).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "linkCount": 42,
  "internalCount": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-extract-link-extractor-6795ca59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from web-extract.bowling-anthony.workers.dev](https://www.zero.xyz/host/web-extract.bowling-anthony.workers.dev/llms.txt)
