# Bulk Security Headers Grader

> Bulk Security Headers Grader is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Grades up to 10 URLs on their HTTP security headers (HSTS, CSP, X-Frame-Options, etc.), returning an A–F score and list of missing headers per URL, sorted worst-first.

## Facts

- Endpoint: GET https://intel.rallylive.ca/monitor/bulk-security
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bulk-security-headers-grader-ce044080
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GBlnbiln_nwq3uCVQC8Wi

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 bulk-security-headers-grader-ce044080
```

Example prompt: Can you grade the security headers on these five sites — example.com, shopify.com, stripe.com, acme.io, and vendor-xyz.com — and tell me which ones are missing HSTS or CSP, ranked from worst to best?

## When to prefer this

Choose this endpoint when you need to audit HTTP security headers across multiple URLs in a single call without building your own header-fetching pipeline. It is especially suited for vendor sweeps, agency portfolio audits, and pre-launch checklists where you want a human-readable A–F grade and a prioritized list of missing headers. Prefer it over single-URL checkers when comparing several domains at once or when the sorted worst-first ranking is useful for triage.

## Known failure modes

- Unreachable URL returns an error or no-grade for that entry
- More than 10 URLs submitted may be rejected or truncated
- Misconfigured input schema (non-HTTP URLs, typos) causes partial failures
- Server that blocks automated requests may return misleading header absence
- Dynamic pages with server-side header injection may not reflect actual browser-received headers

## How this service works

Bulk security-header grade for up to 10 URLs in one call: each URL gets an A-F grade from HSTS, CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy and server-version exposure, with the specific missing headers, sorted worst-first. Vendor sweeps and portfolio audits. $0.01 per batch.

## Output

For each submitted URL, the agent receives an A–F security grade, a list of missing or misconfigured headers (from HSTS, CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, and server-version exposure), and results sorted worst-first so the highest-risk URLs are surfaced at the top.

## 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/bulk-security-headers-grader-ce044080/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)
