# Tomba Email Finder via x402.orthogonal.com

> Tomba Email Finder via x402.orthogonal.com is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Finds the most likely professional email address for a person given their first name, last name, and employer domain.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/email-finder
- Price: $0.01/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-finder-via-x402-orthogonal-com-7af8c327
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-WWJo3dqo9_QL658OsuOP

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-x402-orthogonal-com-7af8c327
```

Example prompt: Can you find the most likely work email address for Jane Doe at stripe.com? Her first name is Jane and last name is Doe.

## When to prefer this

Use this endpoint when you have a person's name and their employer's domain and need to find their most likely professional email address for outreach or contact purposes. Prefer this over email format endpoints (which return patterns, not individual emails) when you need a specific person's address. It complements phone validation or domain email pattern lookups when building a full contact profile.

## Known failure modes

- Email not found — person may not be indexed or domain may not have known patterns
- Low confidence score — returned email may be a best guess and could bounce
- Invalid domain format — domain must be a valid hostname like stripe.com
- Company name too short or too long — must be between 3 and 75 characters
- Rate limiting or payment failure due to x402 protocol issues
- Person exists but uses a non-standard email format not captured by Tomba's patterns

## How this service works

Find the most likely email address from a domain name, first name, and last name.

## Output

Returns the most likely professional email address for the given person at the specified domain, along with a confidence score indicating how certain the prediction is. Optionally includes a phone number if enrich_mobile is set to true.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name, e.g. stripe.com"
      },
      "company": {
       "type": "string",
       "description": "Company name (3-75 chars)"
      },
      "full_name": {
       "type": "string",
       "description": "Full name of the person"
      },
      "last_name": {
       "type": "string",
       "description": "Last name of the person"
      },
      "first_name": {
       "type": "string",
       "description": "First name of the person"
      },
      "enrich_mobile": {
       "type": "string",
       "description": "Set to true to get phone number"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-email-finder-via-x402-orthogonal-com-7af8c327/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
