# Minerva Email Validation API

> Minerva Email Validation API is a paid API for AI agents from agentcash.minerva.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Validates email addresses and resolves identity/enrichment data associated with them via Minerva's consumer intelligence platform

## Facts

- Endpoint: POST https://agentcash.minerva.io/api/minerva/validate-emails
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minerva-email-validation-api-335a1b48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w0bcmeZsgWhGuLEY0vsXP

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 minerva-email-validation-api-335a1b48 -d '<json body>'
```

Example prompt: Can you validate the email address john.smith@example.com and tell me if it's real and deliverable, and what consumer identity or enrichment data Minerva has associated with it?

## When to prefer this

Choose this endpoint when you need both email deliverability validation AND identity enrichment/resolution in a single call, especially when consumer behavior intelligence is needed alongside basic email checks. Prefer over standalone email verification services when downstream personalization or fraud detection requires person-level enrichment data.

## Known failure modes

- Invalid or malformed email address input returns a validation error
- Email not found in Minerva's database returns empty enrichment data
- Payment failure (insufficient USDC balance) blocks the request
- Rate limiting or quota exceeded returns a 429 error
- Network timeout if Minerva's resolution service is slow

## How this service works

Pay-per-request access to Minerva identity resolution, enrichment, email validation, and person search. AI that understands consumer behavior.

## Output

A JSON response containing the email validity status, deliverability assessment, and any associated identity resolution or consumer enrichment data Minerva has on the email owner, such as behavioral signals and person profile attributes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "records": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 2000,
   "minItems": 1,
   "description": "Array of email address strings to validate. Maximum 2000 per request."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minerva-email-validation-api-335a1b48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentcash.minerva.io](https://www.zero.xyz/host/agentcash.minerva.io/llms.txt)
