# agent402.tools Email Security Bundle

> agent402.tools Email Security Bundle is a paid API for AI agents from agent402.tools, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Runs SPF, DMARC, DKIM, and composite deliverability checks on a domain in a single bundled call

## Facts

- Endpoint: POST https://agent402.tools/api/skill/email-security
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-email-security-bundle-245fc9aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bLjelUFWr66xa8jrcDt5J

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 agent402-tools-email-security-bundle-245fc9aa -d '<json body>'
```

Example prompt: Can you run a full email security audit on stripe.com — check SPF, DMARC, DKIM, and give me an overall deliverability score in one shot?

## When to prefer this

Choose this endpoint when you need a comprehensive email authentication audit in a single call rather than querying SPF, DMARC, and DKIM separately. Ideal for agents that need a quick composite deliverability verdict without orchestrating multiple tool calls. Best when you want a single x402 payment to cover all four underlying checks atomically.

## Known failure modes

- Domain not found or invalid — DNS lookup failure
- Domain has no SPF, DMARC, or DKIM records configured — partial results returned
- Malformed domain input — validation error
- Payment failure via x402 — request not processed
- Timeout on DNS resolution for one or more sub-checks

## How this service works

Bundled execution of the Email security workflow - Full email auth posture: SPF, DMARC, DKIM, and composite deliverability score in one call. One x402 payment runs 4 underlying tools (spf-check, dmarc-check, dkim-lookup, email-deliverability); partial-success per step.

## Output

A bundled response containing SPF record validity, DMARC policy details, DKIM lookup results, and a composite email deliverability score — effectively the full email authentication posture for the queried domain in a single API response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain to check (e.g. stripe.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "domain": "stripe.com"
  },
  "pack": "email-security",
  "steps": [
   {
    "ok": true,
    "slug": "spf-check",
    "result": {}
   },
   {
    "ok": true,
    "slug": "dmarc-check",
    "result": {}
   },
   {
    "ok": true,
    "slug": "dkim-lookup",
    "result": {}
   },
   {
    "ok": true,
    "slug": "email-deliverability",
    "result": {}
   }
  ],
  "summary": "4/4 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-email-security-bundle-245fc9aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
