# AgenticData Email Verification

> AgenticData Email Verification is a paid API for AI agents from api.agenticdata.host, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Verifies whether a given email address is valid and deliverable, returning a result status

## Facts

- Endpoint: POST https://api.agenticdata.host/v1/email/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/agenticdata-email-verification-95e61e5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MaKP2p2oeIF7L8e5BIp29

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 agenticdata-email-verification-95e61e5e -d '<json body>'
```

Example prompt: Can you verify whether john.smith@acme.com is a valid, deliverable email address before I add it to my outreach list?

## When to prefer this

Choose this endpoint when you need fast, sub-200ms email validation for B2B contacts before outreach, CRM enrichment, or list cleaning. Prefer this over generic SMTP validators when you need reliable verification backed by an 800M+ B2B contact database, with per-call micropayment pricing via USDC.

## Known failure modes

- Invalid or malformed email format provided — returns validation error
- Email domain does not exist — returns invalid or undeliverable result
- Timeout if mail server is slow to respond
- Insufficient credits or payment failure — returns 402 or authorization error
- Rate limit exceeded — returns 429 error

## How this service works

MCP + API access to 800M+ B2B contacts. People search, email and phone enrichment, LinkedIn lookups — sub-200ms. Start with 2,000 free matches.

## Output

A JSON object containing the input email address and a result field indicating whether the email is valid (e.g. 'ok' for deliverable, or an error/invalid status).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "email": "name@company.com",
  "result": "ok"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticdata-email-verification-95e61e5e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agenticdata.host](https://www.zero.xyz/host/api.agenticdata.host/llms.txt)
