# Minerva Person Identity Resolution

> Minerva Person Identity Resolution is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Resolves person identity records (name, email, phone) to a stable Minerva PID and LinkedIn URL

## Facts

- Endpoint: POST https://stableenrich.dev/api/minerva/resolve
- 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/minerva-person-identity-resolution-c08c36cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZuB6eOs83V1FJ-Mj1AiI3

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 minerva-person-identity-resolution-c08c36cb -d '<json body>'
```

Example prompt: Can you resolve Jane Smith (jane.smith@acme.com, +14155550101) to her Minerva PID and LinkedIn URL? Use her email and full name as the input record.

## When to prefer this

Use this endpoint when you need to resolve one or more person records to a stable, persistent Minerva PID or their LinkedIn profile URL, especially when enriching CRM contacts, deduplicating prospect lists, or linking partial contact data (name + email/phone) to a canonical identity. Prefer this over Apollo People Search when you already have partial contact info and need identity resolution rather than prospecting by filters.

## Known failure modes

- Insufficient identifying information (no email or phone) results in is_match=false and is_resolvable_record=false
- Invalid email format triggers validation_errors on the record
- No matching identity found returns is_match=false with null minerva_pid and linkedin_url
- Batch exceeds 1000 records returns a 400-level error
- Missing required 'records' array returns schema validation error

## How this service works

Pay-per-request access to FullEnrich, CompanyEnrich, LeadMagic, Clado, Exa, Firecrawl, Google Maps, Serper, and Whitepages APIs. No auth, no subscriptions.

## Output

An array of result objects per input record, each containing: is_match (boolean), match_score (0-1 float), minerva_pid (stable person identifier string), linkedin_url, is_resolvable_record flag, and any validation_errors. Also includes an api_request_id and request_completed_at timestamp.

## Example request

```json
{
 "records": [
  {
   "emails": [
    "jane.smith@example.com"
   ],
   "phones": [
    "+14155550101"
   ],
   "full_name": "Jane Smith",
   "last_name": "Smith",
   "record_id": "rec_001",
   "first_name": "Jane"
  }
 ],
 "match_condition_fields": [
  "minerva_pid",
  "linkedin_url"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "records": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "emails": {
      "type": "array",
      "items": {
       "type": "string"
      },
      "description": "Array of email addresses"
     },
     "phones": {
      "type": "array",
      "items": {
       "type": "string"
      },
      "description": "Array of phone numbers"
     },
     "full_name": {
      "type": "string",
      "description": "Person's full name"
     },
     "last_name": {
      "type": "string",
      "description": "Person's last name"
     },
     "record_id": {
      "type": "string",
      "description": "Your unique identifier for this record"
     },
     "first_name": {
      "type": "string",
      "description": "Person's first name"
     },
     "middle_name": {
      "type": "string",
      "description": "Person's middle name"
     },
     "name_suffix": {
      "type": "string",
      "description": "Name suffix (e.g., \"Jr.\", \"Sr.\", \"III\")"
     }
    },
    "additionalProperties": false
   },
   "minItems": 1,
   "description": "Array of person records to resolve. Maximum 1000 per request."
  },
  "match_condition_fields": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Fields that must be present for a match to be returned. Valid options: \"minerva_pid\", \"linkedin_url\""
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minerva-person-identity-resolution-c08c36cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
