# Web Page Link Extractor

> Web Page Link Extractor is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Extracts all de-duplicated absolute URLs with anchor text from a public web page, including internal/external counts, declared feeds, and a sitemap hint.

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/links
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-page-link-extractor-da07dd11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qIUl8CRDwRMp3hmOqlrHA

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-page-link-extractor-da07dd11
```

Example prompt: Can you pull all the links from https://example.com/blog — I want de-duplicated absolute URLs with their anchor text, and flag which are internal vs external?

## When to prefer this

Use this endpoint when you need a focused, structured list of all hyperlinks on a specific page — including anchor text, internal/external classification, feed discovery, and sitemap hints — without needing the full page content or text body. Prefer this over a full-page parser when link graph construction or crawl queue building is the primary goal.

## Known failure modes

- URL is not publicly accessible or returns a non-200 status — endpoint returns an error
- Page is behind authentication or a bot-blocking wall — partial or empty link list returned
- Malformed or missing 'url' query parameter — validation error
- Page contains no hyperlinks — returns empty link list with zero counts
- Network timeout fetching the target URL — timeout error returned

## How this service works

Extract every link from a public page for crawling agents: de-duplicated absolute URLs with anchor text, internal/external counts, declared feeds and a sitemap hint.

## Output

Returns a list of de-duplicated absolute URLs with anchor text for each link found on the page, counts of internal and external links, any declared RSS/Atom feed URLs, and a hint for the site's sitemap location.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public http(s) URL"
      },
      "same_host_only": {
       "type": "boolean",
       "description": "Keep only links on the same host (default false)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-page-link-extractor-da07dd11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
