# StableEnrich PDL People Enrich

> StableEnrich PDL People Enrich is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.28/call, status unknown (last checked 2026-09-15).

Enrich a person's profile using People Data Labs (PDL) by submitting identifying information such as email or name to retrieve detailed contact and professional data.

## Facts

- Endpoint: POST https://stableenrich.dev/api/pdl/people-enrich
- Price: $0.28/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-pdl-people-enrich-d4b1b40d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ToQi3fcdCOInx8FPcejZL

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 stableenrich-pdl-people-enrich-d4b1b40d -d '<json body>'
```

Example prompt: Can you enrich this person's profile using PDL — their email is jane.doe@acme.com and her name is Jane Doe at Acme Corp — I need her job title, phone numbers, and any social profiles you can find?

## When to prefer this

Use this endpoint when you need People Data Labs person enrichment without maintaining a PDL subscription or API key — ideal for pay-per-use, ad hoc lead enrichment workflows. Prefer this over direct PDL access when you want no-auth, per-request billing via USDC. Choose the PDL endpoint specifically when you need PDL's broad demographic and professional dataset rather than Apollo, FullEnrich, or Clado which are available as sibling endpoints on the same platform.

## Known failure modes

- Person not found in PDL database — returns empty or null result
- Insufficient identifying information provided — requires at least one strong identifier like email
- Payment failure via x402 protocol — call not executed
- Rate or quota issues on the underlying PDL API — may return error
- Ambiguous name match with no email — may return wrong person or no result

## How this service works

PDL Person Enrich — career history, emails, phone. Requires one of: `email`, `profile` (LinkedIn URL), or `first_name` + `last_name` + (`company_name` OR `company_domain`). `{ first_name, last_name }` alone returns 400. Prefer `email` when known, then `profile`. No match: HTTP 200, status 404, data null — not billed. Match: $0.28.

## Output

Returns a structured person record from People Data Labs including full name, job title, employer, location, email addresses, phone numbers, social profile URLs, and other demographic and professional attributes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "description": "Email address — highest-reliability input; prefer over profile/name when known."
  },
  "profile": {
   "type": "string",
   "description": "LinkedIn or other social profile URL. Similar coverage to name+domain — not a fallback when person is absent (data: null)."
  },
  "last_name": {
   "type": "string",
   "description": "Last name."
  },
  "first_name": {
   "type": "string",
   "description": "First name."
  },
  "company_name": {
   "type": "string",
   "description": "Company name (with first_name + last_name). Fallback; similar coverage to profile."
  },
  "company_domain": {
   "type": "string",
   "description": "Company domain (with first_name + last_name). Fallback; similar coverage to profile."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableenrich-pdl-people-enrich-d4b1b40d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
