# AmanChain Email Validation + MX

> AmanChain Email Validation + MX is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.001244/call, status unknown (last checked 2026-09-15).

Validates an email address by checking syntax correctness, DNS MX records, and disposability via a pay-per-call x402 node service

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-email-validate
- Price: $0.001244/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-email-validation-mx-962b4d96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FaQ5JS4EOsWAqCzwCUCpr

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 amanchain-email-validation-mx-962b4d96 -d '<json body>'
```

Example prompt: Can you check if john.doe@example.com is a valid email address — make sure the syntax is correct, the domain has MX records, and it's not a disposable address?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call email validation with no account setup, combining syntax checking, real-time DNS MX verification, and disposable email detection in a single call. Prefer it for agent pipelines where USDC micropayments via x402 are already integrated and you need validation without subscribing to a heavyweight email verification SaaS.

## Known failure modes

- Invalid JSON body or missing required fields returns an error
- DNS lookup timeouts may affect MX record check accuracy
- Unknown or very new domains may not resolve correctly
- Payment failure via x402 prevents the call from being processed
- Disposability list may not cover all throwaway email providers

## How this service works

Email Validation + MX: email validation: syntax, DNS MX records, disposability Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-email-validate","request":"<input>"}. No account, no API key.

## Output

Returns a validation result indicating whether the email address has valid syntax, whether the domain has live DNS MX records (meaning it can receive email), and whether the address belongs to a known disposable or temporary email provider.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-email-validate\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-email-validation-mx-962b4d96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
