# FullEnrich Personal Email Finder

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

Looks up a person's most probable personal email address and profile details given their name, company, or LinkedIn URL

## Facts

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

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-personal-email-finder-a7e0b1ab -d '<json body>'
```

Example prompt: Can you find the personal email address for Jane Doe, who works at Acme Inc (acme.com) as their Product Manager? I want to know if the email is actually deliverable.

## When to prefer this

Choose this endpoint when you need a personal (non-work) email address for a specific professional and you have their name plus company or their LinkedIn URL. It is ideal for B2B outreach, recruiting, or lead enrichment workflows where you want deliverability-validated contact data with no API key setup — paying per successful call via agent payment rails.

## Known failure modes

- Insufficient identifying information provided — requires at least a LinkedIn URL or both a name and company domain/name
- Person not found in FullEnrich database — no contact or profile data returned
- Email found but marked as undeliverable or risky status
- Payment failure over x402 rails — call not processed
- Rate or quota constraints on the underlying FullEnrich API

## 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 containing the most probable personal email with a deliverability status (e.g. DELIVERABLE), plus profile data including 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_personal_email": {
    "email": "jane.doe@example.com",
    "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-personal-email-finder-a7e0b1ab/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)
