# Webpage Outline Bulk

> Webpage Outline 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).

Fetches the structural outline of up to 20 web pages concurrently in a single call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page-outline
- 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-outline-bulk-6bde75da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RfKa63lGkzBFll1J1Sou8

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-outline-bulk-6bde75da
```

Example prompt: Can you pull the structural outline for all 15 URLs in my list at once and tell me which ones failed?

## When to prefer this

Use this endpoint when you have a list of 2–20 URLs and need page outlines for all of them efficiently. It avoids the overhead of making sequential single-URL calls by processing all URLs concurrently and returning results in input order with built-in per-item error handling. Prefer this over the single /page-outline endpoint whenever you have multiple URLs to process in one agent turn.

## Known failure modes

- Individual URL unreachable or times out — reflected in per-item error field, not a full call failure
- More than 20 URLs provided — request rejected or truncated
- Invalid or malformed URL in the input list — per-item error returned for that entry
- Payment not fulfilled via x402 protocol — 402 response, no data returned
- Target page blocks crawlers or returns non-200 status — error noted per item

## How this service works

Bulk webpage outline: 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-outline endpoint (Web page structure and outline). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of outline results corresponding to the input URLs, where each item contains the web page's structural outline (headings, sections) matching the single /page-outline endpoint response, plus a per-item error field if that URL failed. A summary count of failures across the batch is also returned.

## 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-outline-bulk-6bde75da/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)
