# html-fetch-bulk

> html-fetch-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 raw HTML for up to 20 URLs concurrently in a single call, returning results in input order with per-item error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page/html
- 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/html-fetch-bulk-2317c915
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-3IRn3DFF6hKA214OVtWe

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 html-fetch-bulk-2317c915
```

Example prompt: Can you fetch the raw HTML from all 15 URLs in my list at once and tell me which ones failed? I need the page source for each one in the same order I gave them to you.

## When to prefer this

Use this endpoint when you have a list of 2–20 URLs and need their raw HTML in a single API call with concurrent processing and ordered results. It is preferable to calling the single /page/html endpoint repeatedly when you want lower latency, fewer round-trips, and built-in per-item error handling for batch workflows.

## Known failure modes

- Individual URL fetch failures are captured per-item with an error field rather than failing the whole batch
- URLs that time out or return non-200 status codes are reported in the per-item error field
- Malformed URLs in the input list will produce per-item errors
- Exceeding the 20-URL limit may result in a request validation error
- Payment failure (x402) if the 0.1 USDC fee is not provided or insufficient

## How this service works

Bulk html fetch: 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/html endpoint (Raw HTML fetch). 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 raw HTML of the fetched page (same as the single /page/html endpoint response) plus a per-item error field indicating any fetch failure. A top-level count of failures is also returned, making it easy to identify partial batch failures.

## 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/html-fetch-bulk-2317c915/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)
