# extract-domains-from-page-bulk

> extract-domains-from-page-bulk is a paid API for AI agents from page.intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-19).

Bulk extracts all domains referenced on up to 20 web pages in a single concurrent call, returning results in input order with per-item errors and a failure count.

## Facts

- Endpoint: GET https://page.intel.rallylive.ca/bulk/page/extract/domains
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/extract-domains-from-page-bulk-7eee4c0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XMfHDRWvtb1cDc9Soh4tJ

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 extract-domains-from-page-bulk-7eee4c0b
```

Example prompt: Can you extract all the domains referenced on these 15 pages for me — here's the list of URLs — 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 domains extracted from all of them in a single API call with concurrent processing. It is more efficient than calling the single-URL endpoint repeatedly and returns results in the original input order, making it ideal for batch enrichment pipelines, link audits, or competitive research workflows. Prefer the single endpoint only when processing one URL at a time in a real-time context.

## Known failure modes

- URL is unreachable or returns a non-200 status — per-item error field set, counted in failure total
- More than 20 URLs submitted — likely rejected or truncated
- URL points to non-HTML content (PDF, binary) — may return empty domain list or error
- Network timeout fetching a page — per-item error reported
- Malformed URL in input list — per-item error with parsing failure

## How this service works

Bulk extract domains from page: up to 20 urls in one call, processed concurrently, results in input order with a per-item error field and a failure count. Same answer per item as the single endpoint. Batch enrichment for agents that hold a list. $0.10 per batch.

## Output

Returns an ordered array of results matching the input URL list. Each item contains the extracted domains found on that page (same answer as the single-endpoint equivalent) plus a per-item error field if extraction failed. A top-level failure count summarizes how many items errored 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/extract-domains-from-page-bulk-7eee4c0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from page.intel.rallylive.ca](https://www.zero.xyz/host/page.intel.rallylive.ca/llms.txt)
