# Webpage Link Extractor

> Webpage Link Extractor is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts all outbound links from a web page's main content as absolute URLs, along with the page's heading outline and title.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page-links
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webpage-link-extractor-387bee50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1gj_Hug4Dv-0h5YfIIc4j

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 webpage-link-extractor-387bee50
```

Example prompt: Can you extract all the outbound links from https://example.com/blog/my-post and give me the page title and heading structure too?

## When to prefer this

Choose this endpoint when you need to extract all hyperlinks from a specific web page as absolute URLs — especially for crawling pipelines, sitemap generation, backlink discovery, or citation auditing. It is ideal when you also want the page's heading outline and title alongside links. Prefer it over full-page scrapers when your primary goal is link discovery rather than full content extraction.

## Known failure modes

- Page is behind authentication or a paywall — returns no links or partial content
- URL is unreachable or returns a non-200 status — request fails with an error
- JavaScript-rendered pages (SPAs) may not expose links at crawl time — incomplete link list
- Page has no outbound links in main content — returns empty links array
- Malformed or non-HTTP URL input — validation error returned
- Rate limiting or bot-blocking by the target site — fetch fails or returns blocked content

## How this service works

Extract all outbound links from a web page's main content as absolute URLs, plus its headings outline and title. Crawling, link discovery, sitemap building, backlink and citation research. $0.01 per page.

## Output

Returns a structured JSON object containing: the page title, a headings outline (h1–h6 hierarchy), and a list of all outbound links found in the main content area as absolute URLs.

## 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",
     "properties": {}
    }
   },
   "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/webpage-link-extractor-387bee50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
