# Email Trust Report

> Email 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 and composes a unified email trust report from MX, SPF, and DMARC DNS records for a given domain.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/compose-email-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/email-trust-report-d957e0f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eXC1a7bwV6pdldgEjAcbv

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 email-trust-report-d957e0f8
```

Example prompt: Can you pull the email trust report for acme.com — I want to see their MX, SPF, and DMARC setup before we start an outreach campaign to their team?

## When to prefer this

Use this endpoint when you need a pre-composed, agent-ready summary of all three email authentication layers (MX, SPF, DMARC) in a single call, rather than performing individual DNS lookups yourself. Prefer it for outreach screening, vendor onboarding flows, or anti-spoofing checks where a structured trust narrative is more useful than raw DNS records.

## Known failure modes

- Domain not found or invalid format returns an error — domain must match the required pattern
- Domain has no MX records — report may indicate no email infrastructure present
- SPF or DMARC records absent — report will note missing records rather than failing entirely
- DNS lookup timeout — transient failures may occur for unreachable authoritative nameservers
- Payment failure via x402 protocol results in 402 response before report is returned

## How this service works

composed email trust report from MX, SPF and DMARC DNS records for outreach, onboarding and anti-spoofing agents.

## Output

A composed report summarizing the domain's email trust posture, including MX record details, SPF policy text and validity, and DMARC policy configuration — highlighting gaps that could expose the domain to spoofing or cause deliverability issues.

## 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/email-trust-report-d957e0f8/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)
