# Orthogonal People Profile Retrieval

> Orthogonal People Profile Retrieval is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Retrieves and normalizes a structured person profile from identifiers such as a LinkedIn URL.

## Facts

- Endpoint: POST https://x402.orthogonal.com/context-dev/people/retrieve
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-people-profile-retrieval-d04fb9be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g6QHPJ-MEGTKyCLwHBUTj

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 orthogonal-people-profile-retrieval-d04fb9be -d '<json body>'
```

Example prompt: Can you retrieve and normalize the professional profile for this person — their LinkedIn URL is https://www.linkedin.com/in/janedoe — and give me the structured details?

## When to prefer this

Choose this endpoint when you need a clean, normalized person profile from a LinkedIn URL or other person identifiers, especially for sales intelligence, recruiting research, or CRM enrichment workflows where structured professional data is required. Prefer this over raw web scraping when you need consistently formatted output rather than raw HTML.

## Known failure modes

- Missing or invalid LinkedIn URL returns an error — identifiers.linkedinUrl is required
- LinkedIn profile is private or inaccessible, resulting in no data returned
- Timeout exceeded if timeoutMS is set too low for the lookup to complete
- Rate limiting or payment failure if x402 payment is not properly handled
- Profile not found if the LinkedIn URL is outdated or the account is deleted

## How this service works

Retrieve and normalize a person profile from identifiers such as LinkedIn URL.

## Output

A normalized, structured person profile object containing professional details such as name, job title, employer, experience history, education, and other identity attributes derived from the provided LinkedIn URL or other identifiers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "timeoutMS": {
   "type": "integer",
   "description": "Optional timeout in milliseconds."
  },
  "identifiers": {
   "type": "object",
   "description": "Known identifiers for the person. Must include linkedinUrl."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-people-profile-retrieval-d04fb9be/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)
