# Minerva Identity Resolution & Enrichment API

> Minerva Identity Resolution & Enrichment API is a paid API for AI agents from agentcash.minerva.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Resolves, enriches, and validates consumer identity data including email validation and person search using AI-powered behavioral understanding

## Facts

- Endpoint: POST https://agentcash.minerva.io/api/minerva/resolve
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minerva-identity-resolution-enrichment-api-536c3431
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EDb-4Ph6ifKaIZvIGcAFC

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-identity-resolution-enrichment-api-536c3431 -d '<json body>'
```

Example prompt: Can you resolve and enrich the identity for someone named Jane Doe with email jane.doe@example.com — I want to know if the email is valid and get whatever consumer profile data Minerva can return about her?

## When to prefer this

Choose this endpoint when you need to resolve, enrich, or validate a consumer identity using AI-powered behavioral understanding — particularly when you have partial information like a name or email and want a full profile. Prefer over generic email validators when you also need person enrichment, and over simple people-search APIs when you want AI that models consumer behavior patterns.

## Known failure modes

- Invalid or unrecognized identity inputs return empty or null resolution results
- Email address not found in Minerva's database returns no enrichment data
- Malformed request body returns a 400-level error
- Insufficient USDC balance or failed x402 payment results in a 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 error
- Ambiguous identity inputs may return low-confidence or multiple candidate matches

## How this service works

Pay-per-request access to Minerva identity resolution, enrichment, email validation, and person search. AI that understands consumer behavior.

## Output

A JSON object containing the resolved identity record, enriched person profile attributes, email validation status, and AI-derived consumer behavior insights for the queried individual

## Example request

```json
{
 "records": [
  {
   "emails": [
    "jane.doe@example.com"
   ],
   "last_name": "Doe",
   "record_id": "test-001",
   "first_name": "Jane"
  }
 ]
}
```

## 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\""
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minerva-identity-resolution-enrichment-api-536c3431/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentcash.minerva.io](https://www.zero.xyz/host/agentcash.minerva.io/llms.txt)
