# API Zavod Mail Security Checker

> API Zavod Mail Security Checker is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Checks a domain's email security configuration by retrieving its MX, SPF, and DMARC DNS records

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/domain/mail-security
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-mail-security-checker-f3d65132
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jCyKyeuzerKI76LmeFyau

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 api-zavod-mail-security-checker-f3d65132
```

Example prompt: Can you check the email security setup for stripe.com — specifically whether it has MX, SPF, and DMARC records configured?

## When to prefer this

Use this endpoint when you need a quick, combined lookup of all three major email security DNS record types (MX, SPF, DMARC) in a single call. It is ideal for bulk domain auditing, pre-send deliverability checks, or security assessments where you want a concise pass/fail flag alongside the raw record data. Prefer it over generic DNS lookup endpoints when the specific goal is email security validation rather than general DNS inspection.

## Known failure modes

- Domain does not exist — returns empty arrays and all boolean flags as false
- DNS timeout — may return empty results without distinguishing from a genuinely unconfigured domain
- Invalid domain format in query parameter — may return error or empty response
- Domain has no email configuration at all — valid response but all flags false and all arrays empty

## How this service works

MX, SPF and DMARC check / Проверка почтовой защиты домена

## Output

Returns a JSON object with the domain name, arrays of MX, SPF, and DMARC DNS record values, and boolean flags (есть_mx, есть_spf, есть_dmarc) indicating whether each record type is present for the queried 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mx": [],
  "spf": [],
  "dmarc": [],
  "домен": "example.com",
  "есть_mx": false,
  "есть_spf": false,
  "есть_dmarc": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-mail-security-checker-f3d65132/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
