# Tomba Email Verifier via Vaaya

> Tomba Email Verifier via Vaaya is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Verifies email address deliverability using Tomba, returning SMTP/MX checks, disposable/webmail flags, and a deliverability score.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/tomba/email-verifier
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-email-verifier-via-vaaya-4962f355
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5jG41DN0_yE-7CxGp4ZqM

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 tomba-email-verifier-via-vaaya-4962f355 -d '<json body>'
```

Example prompt: Before I send to john.doe@acmecorp.com, can you verify whether that email is actually deliverable — check SMTP, MX records, and flag it if it's disposable or risky?

## When to prefer this

Use this endpoint when you have a single email address you need to validate before sending or storing — especially after discovering an email via a finder tool like Tomba LinkedIn email reveal. It is the cheapest verification tier and is ideal as a pre-send gate to avoid bounces and protect sender reputation. Prefer this over full enrichment endpoints when all you need is deliverability confidence rather than full contact data.

## Known failure modes

- Invalid or malformed email address returns validation error
- Domain with no MX records returns undeliverable status
- SMTP server timeout or unreachable host may return risky status rather than a definitive result
- Missing required email parameter returns a 400-level error
- API quota exceeded or authentication failure returns error response

## How this service works

Verify an email address's deliverability via Tomba. Pass `email`. Returns status (deliverable/undeliverable/risky), SMTP + MX checks, disposable/webmail flags, and a score. Cheapest verify rung — use before sending to a found email.

## Output

Returns a deliverability status (deliverable, undeliverable, or risky), results of SMTP and MX record checks, boolean flags for disposable and webmail addresses, and a numeric deliverability confidence score.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "email"
     ],
     "properties": {
      "email": {
       "type": "string",
       "format": "email"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-email-verifier-via-vaaya-4962f355/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
