# AgentUtility People Enrich

> AgentUtility People Enrich is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Enriches a person's profile by resolving name, email, company, and domain from an email address or domain using DNS and public homepage metadata

## Facts

- Endpoint: POST https://x402.agentutility.ai/people-enrich
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-people-enrich-368d336c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sTGvHnhYlOWM83eMbbjwH

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 agentutility-people-enrich-368d336c -d '<json body>'
```

Example prompt: Can you enrich this contact for me — I have jane.doe@example.com and want to know her full name, company, and any other details you can find about her?

## When to prefer this

Use this endpoint when you have an email address or domain and need to enrich it with a person's name, company, and other profile details — especially for B2B lead enrichment, contact resolution, or identity lookups. Prefer this over full web-search-based enrichment when you want a fast, structured, confidence-scored response at low per-call cost.

## Known failure modes

- Unknown or disposable email domain returns low-confidence or empty fields
- Domain has no public homepage metadata, resulting in partial enrichment
- DNS lookup fails for the domain, falling back to parsing only
- Confidence score below threshold when name cannot be reliably inferred
- Invalid email format returns error response

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

A JSON object containing the resolved person's name, email, domain, company, the data sources used (email/domain parsing, Cloudflare DNS, public homepage metadata), and a confidence score between 0 and 1 indicating how reliable the enrichment is.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "email": {
       "type": "string",
       "description": "Person email address, e.g. jane.doe@example.com."
      },
      "name": {
       "type": "string",
       "description": "Optional known person name."
      },
      "domain": {
       "type": "string",
       "description": "Optional company domain."
      },
      "company": {
       "type": "string",
       "description": "Optional known company name."
      },
      "include_homepage": {
       "type": "boolean",
       "description": "Fetch public homepage metadata when a non-free domain is available. Default true."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      },
      "company": {
       "type": "string"
      },
      "confidence": {
       "type": "number"
      },
      "source": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Jane Doe",
  "email": "jane.doe@example.com",
  "domain": "example.com",
  "source": "email/domain parsing + Cloudflare DNS + public homepage metadata",
  "company": "Example",
  "confidence": 0.9
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-people-enrich-368d336c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
