# People Data Labs Person Identify

> People Data Labs Person Identify is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.7/call, status unknown (last checked 2026-09-15).

Broad person lookup returning up to 20 candidate matches with confidence scores given partial identifying information

## Facts

- Endpoint: GET https://x402.orthogonal.com/peopledatalabs/v5/person/identify
- Price: $0.7/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/people-data-labs-person-identify-0786f7da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1F6DFfCbCUatoUycg6E0R

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 people-data-labs-person-identify-0786f7da
```

Example prompt: Can you identify who 'Jane Thornton' is — she works at Accenture and I think she's based in Chicago? Return all possible matches with confidence scores.

## When to prefer this

Use this endpoint when you have partial or ambiguous information about a person and want multiple candidate matches ranked by confidence, rather than a single definitive result. Prefer this over exact-match lookups when the input data may be incomplete, misspelled, or uncertain. Ideal for prospecting, contact enrichment, and identity resolution workflows where you need to evaluate several possible matches before committing to one.

## Known failure modes

- Insufficient identifying information provided — returns empty or low-confidence matches
- Person not found in People Data Labs database — returns zero matches
- Invalid LinkedIn URL or profile format — query parameter rejected
- Rate limit or quota exceeded — HTTP 429 error
- Payment failure — HTTP 402 if USDC payment not processed
- Ambiguous inputs returning many low-confidence candidates requiring manual disambiguation

## How this service works

Broad person lookup returning up to 20 candidate matches with confidence scores. Useful when you have partial info and want multiple possible matches.

## Output

Returns up to 20 candidate person records ranked by confidence score, each potentially containing name, email addresses, phone numbers, LinkedIn profile, current and past companies, location, job title, and other professional details sourced from People Data Labs.

## 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": {
      "lid": {
       "type": "string",
       "description": "LinkedIn ID or URL"
      },
      "name": {
       "type": "string",
       "description": "Full name"
      },
      "email": {
       "type": "string",
       "description": "Email address"
      },
      "phone": {
       "type": "string",
       "description": "Phone number"
      },
      "pretty": {
       "type": "boolean",
       "description": "Pretty print JSON response"
      },
      "company": {
       "type": "string",
       "description": "Current company name"
      },
      "profile": {
       "type": "string",
       "description": "Social profile URL"
      },
      "location": {
       "type": "string",
       "description": "Location string"
      },
      "last_name": {
       "type": "string",
       "description": "Last name"
      },
      "first_name": {
       "type": "string",
       "description": "First name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/people-data-labs-person-identify-0786f7da/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)
