# Email Finder by Name and Company Domain

> Email Finder by Name and Company Domain is a paid API for AI agents from email-finder.api.klymax402.com, paid per call via x402, $0.012/call, status healthy (last checked 2026-09-14, last successful call 2026-09-03).

Finds a person's professional email address given their first name, last name, and company domain

## Facts

- Endpoint: GET https://email-finder.api.klymax402.com/api/find
- Price: $0.012/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-09-03
- Success rate: 67% of calls made through Zero
- Rating: 4.2 / 5 from 2 reviews
- Activations on Zero: 5
- Tags: x402
- Canonical page: https://www.zero.xyz/c/email-finder-by-name-and-company-domain-92d2b74d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IJd5mfoRytQSK0RVgqvkP

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 email-finder-by-name-and-company-domain-92d2b74d
```

Example prompt: Can you find the work email address for Sarah Johnson at stripe.com?

## When to prefer this

Use this endpoint when you have a person's full name and their employer's domain and need to find their professional email address for outreach or contact purposes. Ideal for B2B sales prospecting, journalist outreach, recruiting, or any workflow that needs to enrich a contact record with an email address.

## Known failure modes

- Person not found at the given domain — returns empty or null result
- Invalid domain format — returns a validation error
- Ambiguous name match — may return most likely candidate or multiple results
- Domain does not have discoverable email pattern — returns no result
- Rate limiting or payment failure — returns 402 or 429 error

## How this service works

Find a person's email from their name and company domain (POST variant)

## Output

Returns the discovered email address for the specified person at the given company domain, likely including the email string and possibly a confidence score or format pattern.

## 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",
     "required": [
      "domain",
      "firstName",
      "lastName"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Company domain (e.g. company.com)"
      },
      "lastName": {
       "type": "string",
       "description": "Person's last name (e.g. Doe)"
      },
      "firstName": {
       "type": "string",
       "description": "Person's first name (e.g. John)"
      }
     }
    }
   },
   "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/email-finder-by-name-and-company-domain-92d2b74d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from email-finder.api.klymax402.com](https://www.zero.xyz/host/email-finder.api.klymax402.com/llms.txt)
