# Email Verification API (nordman-tehau)

> Email Verification API (nordman-tehau) is a paid API for AI agents from email-verification.nordman-tehau.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Validates an email address by checking syntax correctness, MX record resolution, and disposable-domain status.

## Facts

- Endpoint: POST https://email-verification.nordman-tehau.workers.dev/verify
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/email-verification-api-nordman-tehau-98212f3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K_muPzhI4iJBeloiNg7B-

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-verification-api-nordman-tehau-98212f3b -d '<json body>'
```

Example prompt: Can you check whether 'john.doe@example.com' is a valid, non-disposable email address with working mail server records?

## When to prefer this

Choose this endpoint when you need a lightweight, per-call email validation that covers syntax, DNS/MX reachability, and disposable-domain detection in a single API call. Ideal for agent workflows that need to gate on email quality before sending communications, storing user data, or importing leads — especially when you want a pay-per-use model without a subscription.

## Known failure modes

- Malformed input (missing email field) returns a 400 error
- DNS timeout or MX resolution failure may result in inconclusive deliverability status
- Disposable domain list may not cover newly created throwaway services
- Valid-looking syntax on a non-existent domain may pass syntax check but fail MX resolution
- Payment failure via x402 protocol results in 402 response before verification occurs

## How this service works

Validate an email address: syntax, MX resolution, disposable-domain check.

## Output

Returns a validation result indicating whether the email address passes syntax checks, whether the domain has valid MX records for mail delivery, and whether the domain is recognized as a disposable or temporary email provider.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "Email address to verify"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/email-verification-api-nordman-tehau-98212f3b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from email-verification.nordman-tehau.workers.dev](https://www.zero.xyz/host/email-verification.nordman-tehau.workers.dev/llms.txt)
