# ContactOut Person-from-Email Lookup

> ContactOut Person-from-Email Lookup is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Reverse-enriches an email address into a full professional profile (name, title, company, LinkedIn URL, work history) via ContactOut.

## Facts

- Endpoint: POST https://vaaya.ai/api/run/contactout/person-from-email
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contactout-person-from-email-lookup-a6a5fbfb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_skpMv0kp5sQK-yiNGa7KY

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 contactout-person-from-email-lookup-a6a5fbfb -d '<json body>'
```

Example prompt: Who is the person behind j.smith@acmecorp.com? Pull their full name, current title, company, LinkedIn URL, and any work history you can find.

## When to prefer this

Use this endpoint when you have an email address and need to identify the professional identity behind it — especially for inbound signups, cold email replies, or lead enrichment. Prefer this over LinkedIn-first lookups when the email is your only starting point. It complements the reverse direction (LinkedIn-to-email) offered by contactout/linkedin-contacts.

## Known failure modes

- Email not found in ContactOut database — returns empty or null profile
- Invalid email format — schema validation error before request is made
- Personal email with no professional data attached — partial or empty result
- Rate limiting or quota exhaustion — HTTP 429 or payment-related error
- Network timeout if ContactOut upstream is slow — HTTP 5xx

## How this service works

Reverse-enrich an email address into a full person profile via ContactOut: name, current title/company, LinkedIn URL, work history. Pass `email` (work or personal). Use it to identify an inbound signup or reply before responding. Complements contactout/linkedin-contacts (which goes the other direction).

## Output

Returns a structured person profile sourced from ContactOut, including the individual's full name, current job title, current employer, LinkedIn profile URL, and professional work history entries — all derived from a single email address input.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string",
       "format": "email"
      }
     },
     "required": [
      "email"
     ],
     "additionalProperties": false,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contactout-person-from-email-lookup-a6a5fbfb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
