# website-security-report-bulk

> website-security-report-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).

Bulk website security posture report for up to 20 domains in one call, returning A-F grades and detailed security findings per domain, processed concurrently in input order.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/security-report
- 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/website-security-report-bulk-80c005ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UXJEdrEOk4X1c-4KjxEUV

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 website-security-report-bulk-80c005ae
```

Example prompt: Can you run a bulk security audit on these 10 domains — example.com, acme.org, testsite.io, and 7 others from my list — and tell me which ones get a failing grade so I know which clients need urgent attention?

## When to prefer this

Choose this endpoint when you have a list of 2–20 domains to audit simultaneously and want to minimize API round-trips. It processes domains concurrently and returns results in input order with graceful per-item error handling, making it ideal for bulk enrichment pipelines, portfolio audits, or agent workflows that already hold a domain list. Use the single /site/security-report endpoint instead if you only need to check one domain at a time.

## Known failure modes

- Exceeding 20 domains per call returns a validation error
- Individual domains that are unreachable or invalid return a per-item error field rather than failing the whole batch
- Network timeouts on specific domains populate that item's error field
- Missing or malformed input list returns a 400-level error
- Payment failure (x402) prevents any results from being returned

## How this service works

Bulk website security report: 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/security-report endpoint (Website security posture report with an A-F grade). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An array of per-domain security report objects returned in input order, each containing an A-F security grade and detailed security posture findings matching the single-domain /site/security-report endpoint, plus a per-item error field for any failed lookups 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/website-security-report-bulk-80c005ae/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)
