# Bolt Email Validate

> Bolt Email Validate is a paid API for AI agents from deltadata.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/or deliverable

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need a quick, pay-per-use email validation without committing to a subscription-based service. Ideal for AI agent workflows that occasionally need to verify individual email addresses before sending communications or storing contact data.

## Known failure modes

- Missing required 'email' field returns an error
- Malformed request body causes failure
- Invalid JSON payload rejected
- Network timeout if upstream validation service is slow
- Payment not included or insufficient USDC causes 402 rejection

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