# Bolt Email Validate

> Bolt Email Validate is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Validates whether a given email address is properly formatted and/or deliverable

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/email-validate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-email-validate-114e2c25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UVfv3iK7lRPDUa25YHYZE

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 bolt-email-validate-114e2c25 -d '<json body>'
```

Example prompt: Can you check whether 'john.doe@example.com' is a valid, deliverable email address?

## When to prefer this

Use this endpoint when you need a quick, pay-per-use email validation without committing to a subscription service. Ideal for AI agents that occasionally need to verify an email address before sending a message or storing user data, especially when already using the Bolt toolkit for other operations.

## Known failure modes

- Missing required 'email' field returns an error
- Malformed request body causes a 400-level error
- Invalid or missing USDC payment header causes a 402 Payment Required response
- Network timeout if the upstream validation service is slow
- Temporary service unavailability returns a 5xx error

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean indicating whether the call succeeded and a 'data' object containing the validation result details for the submitted email address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "email"
 ],
 "properties": {
  "email": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-email-validate-114e2c25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
