# Webpage Link Extractor Bulk

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

Concurrently extracts all outbound links, headings outline, and title from up to 20 URLs in a single call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page-links
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webpage-link-extractor-bulk-94f66403
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u0Ew0yGGd5La6vEUHZHhu

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-bulk-94f66403
```

Example prompt: I have this list of 15 URLs — can you extract all the outbound links, headings, and page titles from all of them at once and tell me if any of them failed?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need link extraction processed concurrently in a single API call rather than making repeated single-URL requests. It is ideal for batch SEO audits, competitor analysis pipelines, or any agent workflow where you need to fan out across multiple pages efficiently. The per-item error field makes it safe for mixed-reliability URL sets. Prefer the single /page-links endpoint if you only have one URL, as the batch endpoint is priced per batch call.

## Known failure modes

- One or more URLs are unreachable or return non-200 status — per-item error field is set, other items still return results
- URL list exceeds 20 items — request is rejected or truncated
- Malformed or non-HTTP URLs in input — per-item error for those items
- Page has no extractable links — returns empty links array with no error
- Target page blocks automated access (bot protection) — per-item error field populated
- Network timeout on specific URL — reflected in per-item error, failure count incremented

## How this service works

Bulk webpage link extractor: up to 20 urls in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /page-links endpoint (Extract all outbound links from a web page's main content as absolute URLs, plus its headings outline and title). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an array of results in the same order as the input URLs. Each item contains the page title, a headings outline, and a list of absolute outbound URLs extracted from the page's main content. Each item also includes a per-item error field indicating any fetch or parse failure, and the response includes a total count of failures across the batch.

## 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-bulk-94f66403/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)
