# Website Security Report

> Website Security Report 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).

Returns a comprehensive A-F security grade for a domain covering HTTPS, HSTS, security headers, cookie flags, DNS hygiene, TLS validity, and server header exposure.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/security-report
- 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/website-security-report-6cc0fbb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ycq47smqWI49LPM-J3gMK

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-6cc0fbb6
```

Example prompt: Can you pull the full security report for stripe.com — I want to see the letter grade and whether they have HTTPS redirects, HSTS, CSP, SPF, DMARC, DNSSEC, and a valid TLS cert?

## When to prefer this

Use this endpoint when you need a one-call, comprehensive security posture snapshot of any domain — especially for vendor vetting, third-party risk assessment, or continuous monitoring of your own domain's security hygiene. It combines HTTPS, header, DNS, TLS, and cookie checks in a single graded report for $0.01, making it ideal for automated due diligence pipelines where calling multiple specialized DNS or header-checking tools separately would be costly or complex.

## Known failure modes

- Invalid or non-existent domain returns an error response
- Domain is unreachable or times out during the check
- DNS-only domains (no HTTP server) may produce partial results for header checks
- Payment not included or insufficient funds returns a 402 error
- Malformed domain input (e.g. URL instead of bare domain) may cause unexpected results

## How this service works

Website security posture report with an A-F grade: HTTPS and redirect to HTTPS, HSTS, security headers (CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy), cookie flags, DNS hygiene (SPF, DMARC, DNSSEC, CAA), server header exposure and TLS certificate validity. Vendor vetting in one call. $0.01 per domain.

## Output

Returns a structured security report with an A-F overall grade plus individual pass/fail or detail fields for: HTTPS enforcement and redirect behavior, HSTS presence and configuration, security headers (CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy), cookie security flags, DNS hygiene (SPF, DMARC, DNSSEC, CAA records), server header information exposure, and TLS certificate validity.

## 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-6cc0fbb6/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)
