# Email to LinkedIn Person Lookup

> Email to LinkedIn Person Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-16).

Given an email address, reverse-lookup the associated LinkedIn profile and personal details for that person.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/email-to-person/single
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/email-to-linkedin-person-lookup-12f6b0bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wlsib0oE31sngn8jISFOa

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-to-linkedin-person-lookup-12f6b0bf -d '<json body>'
```

Example prompt: Can you find the LinkedIn profile and personal details for the person with the email address john.doe@example.com? Return the top 2 best matches.

## When to prefer this

Use this endpoint when you only have an email address and need to identify or enrich a contact with LinkedIn profile data. If you also have the person's name, company, or other details, prefer the Kitchen Sink endpoint for better accuracy. Best for CRM enrichment, sales prospecting, recruiting, and identity resolution workflows where an email is the only known identifier.

## Known failure modes

- Email address not found in database — returns empty or no profiles
- Invalid email format — request rejected with validation error
- Email belongs to a generic/role address (e.g. info@company.com) — low-quality or no match
- Rate limiting or payment failure via x402 protocol — call not executed
- Ambiguous email matched to multiple profiles with low confidence

## How this service works

Do a reverse lookup: given an email address, find someone's LinkedIn profile and personal details. Note: if you also have the person's name, company, etc., you'll get better results with the Kitchen Sink endpoint, where you can pass all the information you have.

## Output

Returns one or more person profiles matched to the provided email address, sorted by best match first. Each profile typically includes the person's LinkedIn profile URL, name, and available personal and professional details. Up to 10 profiles can be returned per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "The person's email address for which you want to do a reverse lookup"
  },
  "num_profiles": {
   "type": "number",
   "description": "Number of profiles to return. Maximum 10 profiles can be returned for given query. The returned profiles will be sorted by best match first."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/email-to-linkedin-person-lookup-12f6b0bf/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)
