# Agent Wonderland People Enrichment Deep

> Agent Wonderland People Enrichment Deep is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs deep people enrichment by combining Apollo person match, company enrichment, and optional email verification into a single paid API call.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/people-enrichment-deep
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-wonderland-people-enrichment-deep-11079a07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6rnJ-Nexkg7x6m00SxSNu

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 agent-wonderland-people-enrichment-deep-11079a07 -d '<json body>'
```

Example prompt: Can you pull up deep professional info on Chris Gillingham at HubSpot — his email is cgillingham@hubspot.com and the domain is hubspot.com — and verify that email is actually deliverable?

## When to prefer this

Choose this endpoint when you need comprehensive people enrichment in a single call — combining Apollo person matching, company data, and email verification together — especially for sales prospecting, CRM enrichment, or outreach validation workflows. Prefer this over lighter enrichment endpoints when accuracy and email deliverability confirmation matter and a $0.10 per-call cost is acceptable.

## Known failure modes

- No Apollo match found for the provided name/domain combination — returns empty or low-confidence result
- Email verification fails or times out via UseBouncer — email_verified field may be null or error
- Insufficient identifying information provided (e.g. only a first name with no domain) — match quality degrades significantly
- Payment failure via x402 — request rejected before execution
- Rate limiting or upstream Apollo API outage — 503 or timeout response

## How this service works

Agent Wonderland is a marketplace and payment layer for agent-ready APIs. This endpoint runs People Enrichment Deep: Deep people enrichment — Apollo person match + company enrichment + email verification. Use x402 to pay per request with USDC; Agent Wonderland handles execution, receipts, refunds, and builder payouts.

## Output

Returns an enriched person record including matched Apollo profile data, company enrichment details, job title, LinkedIn URL, and if verify_email is true, an email deliverability verdict from UseBouncer. Charges $0.10 USDC per call via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "title": "Name",
   "default": "",
   "description": "Person's full name",
   "json_schema_extra": {
    "example": "Chris Gillingham"
   }
  },
  "email": {
   "type": "string",
   "title": "Email",
   "default": "",
   "description": "Email address",
   "json_schema_extra": {
    "example": "cgillingham@hubspot.com"
   }
  },
  "domain": {
   "type": "string",
   "title": "Domain",
   "default": "",
   "description": "Company domain (helps narrow search)",
   "json_schema_extra": {
    "example": "hubspot.com"
   }
  },
  "company": {
   "type": "string",
   "title": "Company",
   "default": "",
   "description": "Company name (helps narrow search)"
  },
  "last_name": {
   "type": "string",
   "title": "Last Name",
   "default": "",
   "description": "Last name (alternative to full name)"
  },
  "first_name": {
   "type": "string",
   "title": "First Name",
   "default": "",
   "description": "First name (alternative to full name)"
  },
  "linkedin_url": {
   "type": "string",
   "title": "Linkedin Url",
   "default": "",
   "description": "LinkedIn profile URL",
   "json_schema_extra": {
    "example": "https://linkedin.com/in/johndoe"
   }
  },
  "verify_email": {
   "type": "boolean",
   "title": "Verify Email",
   "default": true,
   "description": "Verify discovered email via UseBouncer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-wonderland-people-enrichment-deep-11079a07/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
