# Minerva Email Validation

> Minerva Email Validation is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13, last successful call 2026-07-10).

Checks whether email addresses actually exist and are valid, returning match status, validation status, and last-seen information for each address.

## Facts

- Endpoint: POST https://stableenrich.dev/api/minerva/validate-emails
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-07-10
- Success rate: 100% of calls made through Zero
- Rating: 2.3 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minerva-email-validation-572bae17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1qZeA-CXFxs1_tSsHvAjp

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-572bae17 -d '<json body>'
```

Example prompt: Can you check whether these email addresses actually exist: john.doe@example.com, jane.smith@acme.org, and test@fakebusiness.net? I want to know which ones are real before I send outreach.

## When to prefer this

Use this endpoint when you need to verify whether specific email addresses actually exist before sending communications, enriching a CRM, or cleaning a contact list. Prefer this over general enrichment endpoints when the primary goal is deliverability or existence checking rather than profile data. Supports up to 2000 emails per call, making it suitable for batch list cleaning workflows.

## Known failure modes

- Empty or missing records array returns a validation error
- Submitting more than 2000 emails in a single request exceeds the batch limit
- Malformed email strings may return is_match: false rather than an error
- Temporary provider outage may result in failed or incomplete results
- Unknown or newly created email addresses may return null for email_last_seen and email_validation_status

## How this service works

Pay-per-request access to FullEnrich, CompanyEnrich, LeadMagic, Clado, Exa, Firecrawl, Google Maps, Serper, and Whitepages APIs. No auth, no subscriptions.

## Output

Returns an array of results for each submitted email address, each containing: the email address, a boolean is_match indicating whether the address is valid/exists, an optional email_validation_status string, and an optional email_last_seen timestamp. Also includes a request ID and completion timestamp.

## Example request

```json
{
 "records": [
  "zero-qa@agentmail.to"
 ]
}
```

## 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."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minerva-email-validation-572bae17/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
