# Bolt Email Validate

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

Validates whether an email address is properly formatted and deliverable

## Facts

- Endpoint: POST https://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-f0c0eda4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hP0Ygvd4LH_s8qCLklUIt

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

Example prompt: Can you check whether 'john.doe@example.com' is a valid, deliverable email address before I add it to my contact list?

## When to prefer this

Use this endpoint when you need a quick, pay-per-request email validation without managing a subscription. Ideal for AI agents that need to validate individual email addresses on-demand as part of a workflow, especially when combined with other Bolt utility endpoints.

## Known failure modes

- Missing required 'email' field returns an error
- Malformed JSON body causes a 400-level error
- Invalid or unreachable email domain may return validation failure in data
- Payment failure via x402 returns 402 Payment Required
- Rate limiting or server issues return 5xx errors

## 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 validation details about the email address, such as format validity and deliverability status.

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