# OneShotAgent Email Enrichment & Validation

> OneShotAgent Email Enrichment & Validation is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Enriches and validates an email address, returning deliverability signals, identity data, and associated metadata.

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/enrich/email
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-email-enrichment-validation-bfbe8f73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uJvMfnRUEBSstVqhF2gcY

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 oneshotagent-email-enrichment-validation-bfbe8f73 -d '<json body>'
```

Example prompt: Can you enrich and validate the email address john.smith@acme.com — I need to know if it's deliverable and any profile or identity details associated with it?

## When to prefer this

Use this endpoint when you need both enrichment (identity/profile metadata) and validation (deliverability check) in a single call for a given email address, especially in outreach, lead qualification, or CRM hygiene workflows. Prefer this over a pure deliverability-check sibling endpoint when you also need to know who is behind the email, not just whether it can receive mail.

## Known failure modes

- Invalid email format — input fails RFC 5321/5322 validation
- Email domain does not exist — returns undeliverable or unknown status
- Email address not found in enrichment database — sparse or empty enrichment result
- Rate limit or payment failure — 402/429 response if USDC payment is missing or quota exceeded
- Network timeout — service unavailable or slow upstream enrichment provider

## How this service works

Email enrichment and validation

## Output

Returns enrichment metadata associated with the email address, including validity/deliverability status and available identity information such as name, organization, or social signals tied to that email.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-email-enrichment-validation-bfbe8f73/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
