# minia2a Email Verify

> minia2a Email Verify is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Validates whether an email address is properly formatted and/or deliverable via a lightweight paid API call.

## Facts

- Endpoint: GET https://minia2a.uk/x402/email-verify
- 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/minia2a-email-verify-19ca0047
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T-YvFKAaWwPFTLNpq-K8t

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 minia2a-email-verify-19ca0047
```

Example prompt: Can you verify whether john.doe@example.com is a valid, real email address before I send them an invite?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.01 USDC) email validation check via the x402 micropayment protocol, especially when integrating into an agent workflow that handles user-submitted emails or CRM data quality tasks. Prefer this over heavier email verification services when a lightweight, single-check validation is sufficient.

## Known failure modes

- Missing or malformed email query parameter returns an error
- Payment not completed results in HTTP 402 response
- Temporarily unreachable mail servers may cause false negatives
- Invalid input schema causes a 400-level error

## How this service works

minia2a service: x402-email-verify

## Output

Returns a validation result indicating whether the provided email address is valid, including likely format correctness and possibly domain/deliverability checks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-email-verify-19ca0047/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
