# webpage-snippet-bulk

> webpage-snippet-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 lightweight text snippets from up to 20 URLs in a single concurrent batch call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page-snippet
- 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-snippet-bulk-6363173d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dOwRVQ26cq2_RwlxdJE0e

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-snippet-bulk-6363173d
```

Example prompt: I have a list of 15 URLs from my research — can you fetch a text snippet from each one in one go and flag any that fail?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need snippets from all of them efficiently — it processes them concurrently and returns results in input order, which is far more efficient than calling the single /page-snippet endpoint repeatedly. Ideal for agent workflows that collect links during research and need to enrich them in bulk before proceeding.

## Known failure modes

- Individual URLs may return per-item errors if the page is unreachable, returns a non-200 status, or blocks scraping
- Exceeding the 20 URL limit per call may result in a validation error
- Malformed or non-HTTP URLs in the input list will produce per-item errors
- Some pages with heavy JavaScript rendering may return incomplete or empty snippets
- Network timeouts on individual URLs increment the failure count but do not abort the whole batch

## How this service works

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

## Output

An ordered array of results matching the input URL list. Each item contains the same lightweight snippet data as the single /page-snippet endpoint (page title, brief text excerpt, metadata) plus a per-item error field if the URL failed. A top-level failure count indicates how many items could not be fetched.

## 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-snippet-bulk-6363173d/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)
