# AveDaris Email Normalize

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

Normalizes an email address into its canonical local part, domain, and lowercased full address

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/email-normalize
- Price: $0.001/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-normalize-e6ba464e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rfgmwoipe5oEWtrmDeEY5

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-normalize-e6ba464e -d '<json body>'
```

Example prompt: Can you normalize the email address 'User+Tag@Example.COM' and give me the canonical local part, domain, and the clean lowercased version?

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.001 USDC) single-call email normalization that reliably decomposes an address into local part and domain while returning a canonical lowercase form — particularly useful in agent pipelines that need to deduplicate, validate, or standardize user-supplied emails before downstream processing.

## Known failure modes

- Invalid or malformed email string returns an error response
- Email shorter than 3 characters or longer than 320 characters rejected by schema validation
- Missing required 'email' field in request body causes a 400-level error
- Network timeout or service unavailability returns a 5xx error

## 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 with three fields: 'local' (the local part before the @), 'domain' (the domain after the @), and 'normalized' (the full lowercased canonical email address).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "local": "User",
   "domain": "example.com",
   "normalized": "user@example.com"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-email-normalize-e6ba464e/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)
