# FullEnrich Work Email Finder

> FullEnrich Work Email Finder is a paid API for AI agents from fullenrich.agentscore.com, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Looks up a professional's most probable work email address along with profile and company data, given a name+domain, name+company, or LinkedIn URL

## Facts

- Endpoint: POST https://fullenrich.agentscore.com/person/enrich/work-email
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fullenrich-work-email-finder-ee135d03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x0GlvXy_WWWFkCH3ZhFzu

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 fullenrich-work-email-finder-ee135d03 -d '<json body>'
```

Example prompt: Find the work email for Jane Doe who works at Acme Inc — her LinkedIn is linkedin.com/in/janedoe — and tell me if it's deliverable.

## When to prefer this

Choose this endpoint when you need a single professional's verified work email and basic profile data for B2B outreach or CRM enrichment, and you have their name plus company domain/name or their LinkedIn URL. It charges only on successful results ($0.07 USDC per call via x402), making it cost-efficient for per-lead enrichment without requiring a FullEnrich account or API key. Prefer this over bulk enrichment APIs when enriching leads one at a time in an agentic workflow.

## Known failure modes

- Insufficient input: must provide either (first_name + last_name + domain/company_name) or a linkedin_url; missing required identifiers returns an error
- Person not found in FullEnrich database: returns empty or null contact fields
- Email found but status is not DELIVERABLE (e.g. RISKY or UNKNOWN): email is present but quality is uncertain
- LinkedIn URL is private or non-standard format: lookup may fail to resolve profile
- Payment failure over x402 rails: call not executed if USDC payment cannot be settled
- Rate or availability issues on FullEnrich upstream: may return 503 or timeout

## How this service works

Per-call B2B person + company enrichment for autonomous agents, powered by FullEnrich. Pay per successful call over agent payment rails; no API key or account.

## Output

Returns a JSON object with the most probable work email and its deliverability status (e.g. DELIVERABLE), plus a profile object containing the person's full name, current job title, current company name and domain, and location (city and country code).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Current company domain (with first_name + last_name)."
  },
  "last_name": {
   "type": "string"
  },
  "first_name": {
   "type": "string"
  },
  "company_name": {
   "type": "string",
   "description": "Current company name (with first_name + last_name)."
  },
  "linkedin_url": {
   "type": "string",
   "description": "Public professional profile URL (sufficient on its own)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "contact": {
   "most_probable_work_email": {
    "email": "jane@acme.example",
    "status": "DELIVERABLE"
   }
  },
  "profile": {
   "location": {
    "city": "San Francisco",
    "country_code": "US"
   },
   "full_name": "Jane Doe",
   "employment": {
    "current": {
     "title": "Product Manager",
     "company": {
      "name": "Acme Inc",
      "domain": "acme.example"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fullenrich-work-email-finder-ee135d03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fullenrich.agentscore.com](https://www.zero.xyz/host/fullenrich.agentscore.com/llms.txt)
