# StableEnrich FullEnrich People Search

> StableEnrich FullEnrich People Search is a paid API for AI agents from stableenrich.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Search for people and retrieve professional profile data via FullEnrich, with pay-per-request billing using USDC and no subscription required.

## Facts

- Endpoint: POST https://stableenrich.dev/api/fullenrich/people-search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-fullenrich-people-search-d4ec3275
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gjVY-2YJ4hnMaORXsiYDE

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 stableenrich-fullenrich-people-search-d4ec3275 -d '<json body>'
```

Example prompt: Search FullEnrich for people named 'Sarah Chen' who work at Stripe — I need their email address and job title for outreach.

## When to prefer this

Use this endpoint when you need to find professional contact information for a specific person by name or email without committing to a subscription. Ideal for low-volume or one-off people searches where pay-per-request ($0.05 USDC) is cost-effective. Prefer this over direct FullEnrich API access when you need no-auth, instant access. Choose over CompanyEnrich siblings when you want person-level search rather than company-level enrichment.

## Known failure modes

- No matching person found — empty results array returned
- Ambiguous query matches too many people — large result set with low confidence
- Payment failure — USDC transaction not confirmed, request rejected
- Invalid search parameters — missing required name or identifier fields
- FullEnrich upstream unavailable — proxy returns 503 or timeout

## How this service works

FullEnrich People Search — filter by company domain/name/LinkedIn URL, seniority, title, location, skills, and 20+ FullEnrich filters. Default lean roster: companies map + company_id refs; include_employment_history or verbose for full history. $0.15 when results found; free when no matches.

## Output

Returns professional profile data for matching people, including name, email address, job title, company affiliation, and other contact information sourced from FullEnrich's database. Each call costs $0.05 USDC, billed per request with no subscription needed.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "people": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "string"
         },
         "skills": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "location": {
          "type": "object",
          "properties": {
           "city": {
            "type": "string"
           },
           "region": {
            "type": "string"
           },
           "country": {
            "type": "string"
           },
           "country_code": {
            "type": "string"
           }
          },
          "additionalProperties": {}
         },
         "full_name": {
          "type": "string"
         },
         "languages": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "language": {
             "type": "string"
            },
            "proficiency": {
             "type": "string"
            }
           },
           "additionalProperties": {}
          }
         },
         "last_name": {
          "type": "string"
         },
         "educations": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "degree": {
             "type": "string"
            },
            "end_at": {
             "type": "string"
            },
            "start_at": {
             "type": "string"
            },
            "school_name": {
             "type": "string"
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "people": [
   {
    "location": {
     "city": "San Francisco",
     "country": "United States"
    },
    "full_name": "Jane Doe",
    "employment": {
     "current": {
      "title": "VP Engineering",
      "seniority": "VP",
      "company_id": "co_stripe",
      "is_current": true
     }
    },
    "social_profiles": {
     "professional_network": {
      "url": "https://www.linkedin.com/in/janedoe"
     }
    }
   }
  ],
  "metadata": {
   "total": 1,
   "offset": 0
  },
  "companies": {
   "co_stripe": {
    "id": "co_stripe",
    "name": "Stripe",
    "domain": "stripe.com"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableenrich-fullenrich-people-search-d4ec3275/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
