# Website Trust Report

> Website Trust Report is a paid API for AI agents from relay402.georgespring.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches a domain's HTTPS response and returns security posture signals including HTTP status, response headers, HSTS, CSP, and clickjacking protection.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/web-website-trust-report
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/website-trust-report-0df4db2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0oFNbhC-Trcp0oB7hExbf

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-trust-report-0df4db2f
```

Example prompt: Can you run a trust report on stripe.com and tell me whether it has HSTS, a Content Security Policy, and clickjacking protection set up correctly?

## When to prefer this

Choose this endpoint when you need a live, real-time HTTPS fetch of a domain's security headers — especially HSTS, CSP, and clickjacking signals — rather than passive DNS or certificate checks. It complements sibling endpoints like SSL certificate info (CT-based) and domain threat report (DNS-based) by providing direct HTTP-layer evidence of security posture.

## Known failure modes

- Invalid or malformed domain name returns a validation error
- Domain is unreachable or times out — no response headers returned
- Domain uses HTTP only (no HTTPS) — HSTS and related signals will be absent or negative
- Rate limits or payment failures result in a 402 or 429 error
- Domains with non-standard ports or paths may not be supported by the domain-only input schema

## How this service works

website trust report from a direct HTTPS fetch: status, response headers, HSTS, CSP and clickjacking protection signals.

## Output

Returns HTTP status code, full response headers, HSTS policy presence and configuration, Content Security Policy (CSP) header details, and clickjacking protection signals (X-Frame-Options or frame-ancestors CSP directive) obtained via a live HTTPS fetch to the target domain.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "pattern": "^[a-z0-9]([a-z0-9.-]{2,251})[a-z0-9]$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/website-trust-report-0df4db2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from relay402.georgespring.workers.dev](https://www.zero.xyz/host/relay402.georgespring.workers.dev/llms.txt)
