# AgenticData Person Lookup

> AgenticData Person Lookup 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-13).

Look up B2B contact information (email, phone, LinkedIn) for a person by name, domain, company, or LinkedIn URL

## Facts

- Endpoint: POST https://api.agenticdata.host/v1/person/lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticdata-person-lookup-77f49f2e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U7AtBr_e2gTYQRi-aL_K9

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-lookup-77f49f2e -d '<json body>'
```

Example prompt: Can you look up the work email and phone number for Sarah Chen, who works at Stripe? Her LinkedIn is linkedin.com/in/sarahchen-stripe.

## When to prefer this

Choose this endpoint when you need real-time, sub-200ms B2B contact enrichment at scale from a database of 800M+ records. Ideal for sales automation, CRM enrichment, and lead generation workflows where you have at least one identifier (name, email, LinkedIn URL, or company domain) and need to resolve a full contact profile. Pay-per-use at $0.01 per call makes it cost-effective for variable-volume workloads without a monthly subscription commitment.

## Known failure modes

- Contact not found in database — returns found: false with no contact data
- Insufficient input provided — too few identifiers to disambiguate the person
- Rate limiting or quota exceeded after free tier exhausted
- Ambiguous match — multiple contacts found with similar identifiers
- Invalid LinkedIn URL format — lookup fails to resolve profile
- Payment failure via x402 protocol — call does not execute

## 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 contact was matched in the database, along with available contact details such as email address, phone number, LinkedIn URL, name, and company information for the matched person.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string"
  },
  "email": {
   "type": "string"
  },
  "phone": {
   "type": "string"
  },
  "domain": {
   "type": "string"
  },
  "company": {
   "type": "string"
  },
  "linkedin_url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticdata-person-lookup-77f49f2e/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)
