# Aviato Person Email Lookup

> Aviato Person Email Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Retrieve email addresses associated with a person, queryable by internal ID, LinkedIn ID, LinkedIn URL, or email address.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/person/email
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aviato-person-email-lookup-2d1816bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qS7VUUSuTl9y_VARCFkys

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 aviato-person-email-lookup-2d1816bb
```

Example prompt: Can you find the email address for the person with LinkedIn profile https://www.linkedin.com/in/johndoe — I need their work email for outreach.

## When to prefer this

Use this endpoint when you need to retrieve email addresses for a specific person and have an identifier such as a LinkedIn URL, LinkedIn ID, or an Aviato person ID. It is well-suited for sales lead enrichment, recruiting outreach, and CRM data completion workflows where LinkedIn profile data is already available. Prefer this over generic web scraping or contact-finder tools when you want structured, person-level email data tied to LinkedIn profiles.

## Known failure modes

- Person not found for the given ID or LinkedIn URL — empty or null result returned
- Invalid LinkedIn URL format causing a query error
- No email addresses on record for the person — empty array returned
- Rate limiting or payment failure (x402 payment required per call)
- Ambiguous query with no unique person match

## How this service works

Get a person's email addresses.

## Output

Returns one or more email addresses associated with the queried person, potentially including email type (e.g. work, personal). The response is keyed to the person matched by the provided identifier (ID, LinkedIn ID, LinkedIn URL, or email).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "type": {
       "type": "string",
       "description": "Email type filter"
      },
      "email": {
       "type": "string"
      },
      "linkedinID": {
       "type": "string"
      },
      "linkedinURL": {
       "type": "string"
      },
      "linkedinEntityId": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aviato-person-email-lookup-2d1816bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
