# Qonoro Person Enrichment

> Qonoro Person Enrichment is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Given a full name and company, returns professional profile data including title, seniority, department, decision-maker status, LinkedIn URL, location, and a brief bio.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/person/enrich
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-person-enrichment-cc40f0ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2BYUX_3HCga9UiBfKANRW

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 qonoro-person-enrichment-cc40f0ae -d '<json body>'
```

Example prompt: Can you look up Sarah Chen at Acme Corp and tell me her job title, seniority level, department, whether she's a decision maker, and her LinkedIn URL?

## When to prefer this

Use this endpoint when you need structured professional profile data for a named individual at a known company, especially for B2B sales qualification, CRM enrichment, or pre-meeting research. It is purpose-built for agentic workflows with native x402 micropayment support, making it ideal for per-record enrichment at scale without subscription overhead. Prefer it over generic search when you need normalized, enum-classified seniority and department fields ready for downstream decision logic.

## Known failure modes

- Person not found — returns low confidence score or empty fields with quality warnings
- Ambiguous name match — multiple people with the same name at the company may reduce confidence
- Missing or incorrect company name — enrichment may fail or return wrong person
- Rate limiting or payment failure via x402 — returns 402 Payment Required
- Deep enrichment depth unavailable — falls back to standard with a quality warning

## How this service works

x402-native professional person enrichment for autonomous agents. Given a full name and company, returns title, seniority, department, decision-maker status, LinkedIn URL, location, and a brief bio. Structured JSON. Paid per request via x402.

## Output

A structured JSON object containing the person's first and last name, job title, seniority level (c_level, vp, director, manager, individual_contributor, or unknown), department (engineering, sales, marketing, finance, product, hr, legal, operations, executive, other, or unknown), decision-maker status, LinkedIn URL, location, email if available, a short bio, confidence score, quality warnings, sources used, response time, request ID, and a cache_hit flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "standard",
    "deep"
   ],
   "type": "string",
   "default": "standard"
  },
  "full_name": {
   "type": "string",
   "description": "Full name of the person to enrich."
  },
  "buyer_region": {
   "enum": [
    "PR",
    "outside_PR",
    "unknown"
   ],
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  },
  "company_name": {
   "type": "string",
   "description": "Company the person works at."
  },
  "linkedin_url": {
   "type": "string",
   "description": "Optional known LinkedIn profile URL."
  },
  "company_website": {
   "type": "string",
   "description": "Optional company website URL."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-person-enrichment-cc40f0ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
