# html-lists-extract-bulk

> html-lists-extract-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).

Extracts bullet and numbered lists from up to 20 URLs in a single concurrent batch call, returning ordered results with per-item error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/lists
- 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-lists-extract-bulk-162f58fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BPsR6A4UGZSm_IbXQGr4_

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-lists-extract-bulk-162f58fb
```

Example prompt: Can you extract all the bullet and numbered lists from these 15 pages at once: [url1, url2, ..., url15]? I need them returned in the same order I gave them, with any errors noted per URL.

## When to prefer this

Choose this endpoint when you have 2–20 URLs and need list extraction from all of them efficiently — it processes all URLs concurrently and returns results in input order, making it far more efficient than sequential single-URL calls. Prefer it over the single /site/lists endpoint whenever you hold a list of pages to process, especially in agent pipelines doing bulk content audits, competitive analysis, or knowledge base construction.

## Known failure modes

- Individual URL unreachable or returns non-200 status — reflected in per-item error field, does not fail entire batch
- URL contains no HTML lists — returns empty arrays for that item
- Malformed or non-HTML URL provided — per-item error field populated
- Batch exceeds 20 URLs — request rejected or truncated
- Network timeout on specific URLs — per-item error field with timeout indication
- Rate limiting or payment failure — entire call rejected with payment/auth error

## How this service works

Bulk html lists extract: 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 /site/lists endpoint (Bullet and numbered lists from a page as arrays). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-URL results, each containing the extracted bullet lists and numbered lists as arrays (matching the single /site/lists response), plus a per-item error field if extraction failed, and an overall 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/html-lists-extract-bulk-162f58fb/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)
