# Tomba Domain Email Search

> Tomba Domain Email Search 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).

Search for all email addresses associated with a given domain, returning employee details and organization info

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/domain-search
- 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-domain-email-search-ba0152a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RwLLuhDf_VAhHnxMFTxGv

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-domain-email-search-ba0152a6
```

Example prompt: Can you find all the email addresses associated with stripe.com — especially anyone in the engineering or sales department? Show me up to 20 results.

## When to prefer this

Use this endpoint when you need to bulk-discover email addresses across an entire company domain rather than finding a single person's email. Prefer this over single-email-lookup endpoints when building prospect lists, doing organizational research, or needing multiple contacts at a company filtered by department or country.

## Known failure modes

- Invalid or non-existent domain returns empty results or error
- Domain with no indexed emails returns empty list
- Invalid country code causes parameter rejection
- Department filter string not matching allowed enum values causes no results
- Rate limiting or payment failure returns 402 or 429 error
- Pagination page number out of range returns empty result set

## How this service works

Search emails based on a website domain. Returns all email addresses found on the internet for a given domain, with organization info and employee details.

## Output

Returns a paginated list of email addresses found on the internet for the specified domain, including associated employee names, job titles, departments, and organization metadata such as company name and country.

## 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": {
      "page": {
       "type": "string",
       "description": "Page number (default 1)"
      },
      "limit": {
       "type": "string",
       "description": "Results per page: 10, 20, or 50 (default 10)"
      },
      "domain": {
       "type": "string",
       "description": "Domain name to search, e.g. stripe.com"
      },
      "company": {
       "type": "string",
       "description": "Company name (3-75 chars)"
      },
      "country": {
       "type": "string",
       "description": "Two-letter country code filter"
      },
      "department": {
       "type": "string",
       "description": "Department filter: engineering, sales, finance, hr, it, marketing, operations, management, executive, legal, support, communication, software, security, pr, warehouse, diversity, administrative, facilities, accounting"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-domain-email-search-ba0152a6/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)
