# Tomba Email Finder via Vaaya

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

Finds a person's professional email address from their name and company domain using Tomba, returning the most likely email with a confidence score, sources, and position data.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/tomba/email-finder
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-email-finder-via-vaaya-6c4a33cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQyLPzN46ABueLGKM1W4z

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-finder-via-vaaya-6c4a33cb -d '<json body>'
```

Example prompt: Can you find the professional email address for Jane Smith at Stripe — their domain is stripe.com?

## When to prefer this

Use this endpoint when you need to find a specific person's professional email given their name and employer, especially for B2B sales prospecting, recruiting, or investor outreach. Prefer this over generic web search when you need a verified, confidence-scored email rather than a guessed pattern. The Tomba-backed lookup is particularly strong for company domains with known email patterns. If you have a LinkedIn profile URL instead of a name, use the LinkedIn-to-email sibling endpoint instead.

## Known failure modes

- Email not found in Tomba's database — returns no result or low-confidence response
- Invalid or unrecognized company domain — lookup fails or returns wrong company's results
- Ambiguous name with multiple matches — may return incorrect person's email
- Tomba credit not consumed but no email returned for unknown individuals
- Missing required parameters (both domain/company and name) — request rejected

## How this service works

Find a person's professional email via Tomba from their name + company. Pass `domain` (preferred, e.g. stripe.com) or `company`, plus `full_name` or `first_name` + `last_name`. Returns the most likely email with a confidence score, sources, and position data. 1 Tomba credit — only charged upstream when a valid email is found.

## Output

Returns the most likely professional email address for the person, a confidence score (0–100), source references used to verify the email, and available position/title data for the matched individual. A Tomba credit is only consumed when a valid email is found.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string",
       "minLength": 3
      },
      "company": {
       "type": "string",
       "minLength": 1
      },
      "full_name": {
       "type": "string",
       "minLength": 2
      },
      "first_name": {
       "type": "string",
       "minLength": 1
      },
      "last_name": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-email-finder-via-vaaya-6c4a33cb/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)
