# Bolt Email Validate

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

Validates an email address and returns structured validation results

## Facts

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

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-0cd64b15 -d '<json body>'
```

Example prompt: Can you validate the email address john.doe@example.com and tell me if it's a real, deliverable address?

## When to prefer this

Use this endpoint when you need to validate a single email address programmatically within an AI agent workflow and are willing to pay $0.03 USDC per call via x402. Prefer this over free regex-only checks when you need richer validation signals such as domain existence or deliverability. It is part of the Bolt utility toolkit on orbonomy.xyz.

## Known failure modes

- Missing or empty email field returns a 400-level error
- Malformed request body returns a parsing error
- Invalid email format may return success:false with error details in data
- Network or service timeout for slow domain lookups
- Payment failure via x402 if USDC balance is insufficient

## 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 boolean 'success' field and a 'data' object containing detailed validation results about the email address, such as format validity, domain existence, and deliverability signals.

## 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-0cd64b15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
