# cms-detect-bulk

> cms-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).

Detects the CMS and platform for up to 20 domains in a single concurrent batch call, returning results in input order with per-item errors.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/cms
- 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/cms-detect-bulk-bbc1abf0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XuI6QHMmXIjglSRC65the

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 cms-detect-bulk-bbc1abf0
```

Example prompt: Can you detect the CMS and platform for all 15 domains in my list — acme.com, riviera.io, shopfront.co, and 12 others — in one go and tell me which ones are running WordPress, Shopify, or something else?

## When to prefer this

Use this endpoint when you need to classify the CMS or platform of multiple domains (up to 20) and want to minimize API round-trips. It is more efficient than calling the single /site/cms endpoint repeatedly, as all domains are processed concurrently and results are returned in input order. Prefer this for bulk enrichment pipelines, lead qualification, or competitive analysis workflows where a list of domains must all be checked.

## Known failure modes

- Domain unreachable or non-existent returns a per-item error without failing the whole batch
- More than 20 domains submitted may result in rejection or truncation
- Domains with heavy bot protection may return inconclusive CMS detection
- Network timeout on a specific domain populates the error field for that item only
- Malformed domain names in the input list cause per-item errors

## How this service works

Bulk cms 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 /site/cms endpoint (CMS and platform detection). 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 contains the detected CMS name, platform type, and an optional per-item error field if detection failed. A summary count of failures is also included in the response.

## 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/cms-detect-bulk-bbc1abf0/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)
