# Leadsforge Email Enrichment

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

Finds a professional email address for a person given their name and company, company domain, or LinkedIn URL.

## Facts

- Endpoint: POST https://x402.orthogonal.com/leadsforge/enrichment/email
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/leadsforge-email-enrichment-7c8a26ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zUT4dymRLo5ctB8c0wOpv

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 leadsforge-email-enrichment-7c8a26ea -d '<json body>'
```

Example prompt: Can you find the professional email address for Sarah Johnson who works at Stripe? Her LinkedIn is linkedin.com/in/sarahjohnson-stripe.

## When to prefer this

Choose this endpoint when you need to synchronously retrieve a professional email for a specific individual and can provide at least a full name plus company name, company domain, or LinkedIn URL. It is well-suited for single-record enrichment in real-time workflows such as CRM enrichment, sales outreach pipelines, or agent-driven prospecting. Prefer it over bulk enrichment tools when you need an immediate, per-call result without batch delays.

## Known failure modes

- Insufficient identifying information (no LinkedIn URL and no full name + company/domain) results in a failed lookup
- Person not found in database returns empty email
- Ambiguous name with common spelling and no domain/LinkedIn to narrow results may return wrong or no match
- Invalid LinkedIn URL format causes request rejection
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Find email address for a person synchronously. Provide name + company or LinkedIn URL.

## Output

Returns the found professional email address for the specified person, along with any available metadata such as a Leadsforge person ID or external reference ID. If an email cannot be found, returns an empty or null result for the email field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "company": {
   "type": "string",
   "description": "Company name"
  },
  "lastName": {
   "type": "string",
   "description": "Person's last name"
  },
  "personID": {
   "type": "string",
   "description": "Leadsforge person ID"
  },
  "firstName": {
   "type": "string",
   "description": "Person's first name"
  },
  "externalID": {
   "type": "string",
   "description": "External reference ID"
  },
  "linkedinURL": {
   "type": "string",
   "description": "LinkedIn profile URL"
  },
  "companyDomain": {
   "type": "string",
   "description": "Company domain"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/leadsforge-email-enrichment-7c8a26ea/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)
