# FullEnrich Person Lookup

> FullEnrich Person Lookup is a paid API for AI agents from fullenrich.agentscore.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Enriches a B2B person profile with current job title, employer, and location given a name, domain, or LinkedIn URL

## Facts

- Endpoint: POST https://fullenrich.agentscore.com/person/lookup
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fullenrich-person-lookup-62656f42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8bBTI35A6ki1IhRR4AAm3

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 fullenrich-person-lookup-62656f42 -d '<json body>'
```

Example prompt: Can you look up Jane Doe's current job title and employer? Her LinkedIn profile is linkedin.com/in/janedoe and she works at acme.example.

## When to prefer this

Use this endpoint when you need structured, current B2B employment data for a specific individual and have at least a LinkedIn profile URL, member ID, or a name plus company domain. Prefer this over generic web search when you need clean, structured output (title, employer, location) suitable for CRM ingestion or lead scoring without scraping.

## Known failure modes

- No match found — returns total: 0 and empty matches array when the person cannot be identified
- Ambiguous input — providing only a name without a domain or profile URL may yield zero or multiple results
- Invalid LinkedIn URL format — non-standard or private profile URLs may fail to resolve
- Payment failure — call is not executed if the x402 USDC payment of $0.02 cannot be settled
- Rate limiting or upstream unavailability from FullEnrich may return a server error

## How this service works

Per-call B2B person + company enrichment for autonomous agents, powered by FullEnrich. Pay per successful call over agent payment rails; no API key or account.

## Output

Returns a JSON object with a matches array containing the person's full name, current job title, current employer name and domain, and location (city and country code). The total field indicates how many matches were found. Returns an empty matches array if no record is found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "person_name": {
   "type": "string"
  },
  "company_domain": {
   "type": "string",
   "description": "Company web domain (with person_name)."
  },
  "person_professional_network_id": {
   "type": "integer",
   "description": "Numeric professional-network member ID (sufficient on its own)."
  },
  "company_professional_network_id": {
   "type": "integer",
   "description": "Numeric professional-network company ID (with person_name)."
  },
  "person_professional_network_url": {
   "type": "string",
   "description": "Public professional profile URL (e.g. a LinkedIn profile URL; sufficient on its own)."
  },
  "company_professional_network_url": {
   "type": "string",
   "description": "Company page URL on a professional network (with person_name)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "matches": [
   {
    "location": {
     "city": "San Francisco",
     "country_code": "US"
    },
    "full_name": "Jane Doe",
    "employment": {
     "current": {
      "title": "Product Manager",
      "company": {
       "name": "Acme Inc",
       "domain": "acme.example"
      }
     }
    }
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fullenrich-person-lookup-62656f42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fullenrich.agentscore.com](https://www.zero.xyz/host/fullenrich.agentscore.com/llms.txt)
