# www-apex-check-bulk

> www-apex-check-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).

Checks whether up to 20 domains serve different content on www vs apex (root) in a single concurrent batch call, returning per-item results in input order.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/monitor/www-vs-apex
- 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/www-apex-check-bulk-a7709a41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fvgAHLPhXFw7gqdJ2LWvc

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 www-apex-check-bulk-a7709a41
```

Example prompt: Can you batch check whether www and the apex domain serve the same content for these domains: example.com, acme.io, startup.co, mybrand.net, and testsite.org — I want to know if any of them have a www vs root mismatch?

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need to check www vs apex configuration for all of them efficiently in a single call. It is far more efficient than calling the single /monitor/www-vs-apex endpoint repeatedly and returns results in the same order as the input. Prefer this over the single endpoint whenever batch processing a domain list, running audits, or enriching records in bulk.

## Known failure modes

- Exceeds 20-domain limit — batch rejected or truncated
- Individual domain unreachable — per-item error field populated, rest of batch succeeds
- Malformed domain name in input — per-item error returned
- Network timeout for a specific domain — reflected in that item's error field
- Empty input list — request fails with validation error

## How this service works

Bulk www apex check: 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/www-vs-apex endpoint (www vs apex check). 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 www vs apex comparison outcome (same or different), redirect behavior, and an error field if the check failed for that domain. A top-level count of failures across the batch 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/www-apex-check-bulk-a7709a41/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)
