# AgenticData Person Enrichment API

> AgenticData Person Enrichment API is a paid API for AI agents from api.agenticdata.host, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Enriches a B2B contact by looking up professional data (email, phone, LinkedIn profile, company info) from a 800M+ person database using email, phone, domain, or LinkedIn URL as input.

## Facts

- Endpoint: GET https://api.agenticdata.host/v1/enrich/person
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticdata-person-enrichment-api-1a6c967a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_83cffrLA8wVjUFYE0Vzo5

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 agenticdata-person-enrichment-api-1a6c967a
```

Example prompt: Look up the professional contact details for john.doe@acmecorp.com in the AgenticData database — I need their phone number, LinkedIn profile, and job title if available.

## When to prefer this

Choose this endpoint when you need real-time, sub-200ms person enrichment by email, phone, domain, or LinkedIn URL and want pay-per-use pricing at $0.01/call with no subscription commitment. Prefer it over ZoomInfo or Apollo for agent-native MCP workflows that require programmatic access without a SaaS contract, or when you want to start with 2,000 free matches before committing to paid usage.

## Known failure modes

- Contact not found in database (found: false) — person may not be in the 800M+ index
- Invalid or malformed email/phone/LinkedIn input returns an error
- No query parameters provided — at least one of email, phone, domain, or linkedin is required
- Rate limiting or quota exhaustion if free 2,000 matches are consumed
- Payment failure via x402 protocol if USDC balance is insufficient

## How this service works

MCP + API access to 800M+ B2B contacts. People search, email and phone enrichment, LinkedIn lookups — sub-200ms. Start with 2,000 free matches.

## Output

Returns a JSON object with a 'found' boolean indicating whether the person was matched in the database. When found, includes enriched professional data such as verified email address, phone number, LinkedIn profile URL, job title, company name, and other B2B contact fields available for the matched individual.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string"
      },
      "phone": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      },
      "linkedin": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticdata-person-enrichment-api-1a6c967a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agenticdata.host](https://www.zero.xyz/host/api.agenticdata.host/llms.txt)
