# MDataAccess Person Enrichment

> MDataAccess Person Enrichment is a paid API for AI agents from api.mdataaccess.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-14).

Enriches a person's profile using their email address, LinkedIn URL, or full name, returning structured contact and professional data.

## Facts

- Endpoint: GET https://api.mdataaccess.com/person
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mdataaccess-person-enrichment-64dcf96a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HzpdD-qNPHS1Cl1ZafvcD

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 mdataaccess-person-enrichment-64dcf96a
```

Example prompt: Can you enrich the contact profile for Jane Smith at Acme Corp — her email is jane.smith@acmecorp.com — and pull back her job title, LinkedIn, and any other professional details you can find?

## When to prefer this

Choose this endpoint when you need to enrich a single person's profile using an email address, LinkedIn URL, or full name and optionally a company name. It is ideal for CRM enrichment, sales prospecting, lead qualification, and contact resolution workflows where you have at least one identifying attribute for the person. Prefer this over company enrichment endpoints when the primary subject is an individual rather than an organization.

## Known failure modes

- No match found for the provided email, name, or LinkedIn URL — returns empty data object
- Invalid or malformed LinkedIn URL format causes a failed lookup
- Ambiguous name with no company context may return incorrect or low-confidence results
- Rate limiting or payment failure returns a 402 or 429 error
- Person profile may be incomplete if only partial data is available in the underlying database

## How this service works

Enrich a person using an email, LinkedIn URL, or name.

## Output

Returns a structured person profile object including available fields such as full name, email address, job title, company name, LinkedIn URL, phone number, location, and other professional or contact attributes. The response includes a provider field indicating the data source.

## 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": {
      "name": {
       "type": "string",
       "description": "Person's full name."
      },
      "email": {
       "type": "string",
       "description": "Person email address."
      },
      "company": {
       "type": "string",
       "description": "Company name used to improve matching."
      },
      "linkedin_url": {
       "type": "string",
       "description": "Public LinkedIn profile URL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "provider",
      "data"
     ],
     "properties": {
      "data": {
       "type": "object"
      },
      "provider": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

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