# AveDaris Email Domain Check

> AveDaris Email Domain Check is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Validates an email address's domain by checking for MX records, address records, and mailbox-level deliverability

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/email-domain-check
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-email-domain-check-92dc8b7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ems3qhM6JYnE1cXWsWPIR

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 avedaris-email-domain-check-92dc8b7a -d '<json body>'
```

Example prompt: Can you check whether the email domain for john.smith@acme-corp.io is real and capable of receiving mail — does it have MX records and is the mailbox verified?

## When to prefer this

Use this endpoint when you need lightweight, real-time email domain validation before sending messages, registering users, or processing leads. It is well-suited for pre-screening email addresses at the point of collection, fraud detection on sign-up flows, or enriching contact data. Prefer this over full SMTP probing when you need a fast, low-cost signal about domain health without triggering spam filters. It is not a full mailbox verification service and may not catch all disposable email providers.

## Known failure modes

- Malformed email address returns validation error
- DNS lookup timeout for slow-responding domains
- Domain exists but has no public MX records, returning hasMx: false
- Mailbox verification may be blocked by mail servers that reject VRFY probes, leaving mailboxVerified: false even for valid addresses
- Network errors reaching DNS resolvers

## How this service works

AveDaris is the economic coordination layer for autonomous software: discover, route, evaluate, procure, verify, and learn across agent services.

## Output

Returns a JSON object containing: whether the domain has MX records (hasMx: boolean), the parsed domain name (domain: string), whether the specific mailbox was verified (mailboxVerified: boolean), and whether the domain has an A/address record (hasAddressRecord: boolean).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "maxLength": 320,
   "minLength": 3
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "hasMx": true,
   "domain": "example.com",
   "mailboxVerified": false,
   "hasAddressRecord": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-email-domain-check-92dc8b7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.avedaris.com](https://www.zero.xyz/host/api.avedaris.com/llms.txt)
