# status-page-detect-bulk

> status-page-detect-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).

Concurrently checks up to 20 domains for the presence of a status page, returning ordered results with per-item error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/monitor/status-page
- 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/status-page-detect-bulk-c1cdb8c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XU_fTOVT5DbtbFxAnQOLn

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 status-page-detect-bulk-c1cdb8c0
```

Example prompt: Check whether these domains have a status page and return the results in order: stripe.com, github.com, shopify.com, notion.so, and linear.app — up to 20 at once is fine.

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need status page detection for all of them in a single network round-trip rather than calling the single-domain endpoint repeatedly. Ideal for batch enrichment workflows, portfolio audits, or pre-monitoring setup where sequential calls would be too slow or costly. The per-item error field means partial failures don't break the whole result set.

## Known failure modes

- Domain list exceeds 20 items — request rejected or truncated
- Invalid or malformed domain names cause per-item errors without failing the whole batch
- Some domains may be unreachable, returning per-item error with no status page result
- Payment not provided or insufficient USDC — 402 response blocks the call
- Network timeouts on individual domains increment the failure count but do not block other results

## How this service works

Bulk status page detect: up to 20 domains 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 /monitor/status-page endpoint (Status page finder). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input domain list, where each item indicates whether a status page was found, the detected status page URL if available, and a per-item error field for failures. A top-level count of failed items 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/status-page-detect-bulk-c1cdb8c0/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)
