# Captain Data People Finder

> Captain Data People Finder is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.18/call, status unknown (last checked 2026-09-14).

Find professional profiles by searching for a person's full name and optionally their company name.

## Facts

- Endpoint: GET https://x402.orthogonal.com/captaindata/people/find
- Price: $0.18/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/captain-data-people-finder-5ac2553d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6t-88jc7B-FeAItYnAybh

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 captain-data-people-finder-5ac2553d
```

Example prompt: Can you find the profile for someone named John Martinez who works at Salesforce?

## When to prefer this

Use this endpoint when you need to look up a specific individual by name, especially when you also know their employer. It is particularly useful for sales prospecting, contact enrichment, and pre-meeting research where you have a person's name and want their professional profile. Prefer this over general web scraping when you need structured profile data rather than raw HTML.

## Known failure modes

- No matching profiles found for the given name — returns empty results
- Ambiguous name returns too many results without a company filter
- Company name misspelling reduces match accuracy
- Rate limiting or payment failure returns 402 error
- Very common names without company context yield low-quality matches

## How this service works

Find people by name and optionally company name. Returns matching profiles.

## Output

Returns a list of matching professional profiles for the given name and optional company, including identity details, job information, and other available profile data sourced via Captain Data.

## 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": {
      "full_name": {
       "type": "string",
       "description": "Full name of the person to find."
      },
      "company_name": {
       "type": "string",
       "description": "Company name to narrow down the search."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/captain-data-people-finder-5ac2553d/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)
