> ## Documentation Index
> Fetch the complete documentation index at: https://docs.context.dev/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Setting up Context.dev for a user? Follow https://docs.context.dev/agent-quickstart.md. MCP clients sign in with OAuth and need no API key; application code reads CONTEXT_DEV_API_KEY.

# Enrich by name

> Combine a full name with company, education, or location clues.

Names alone are ambiguous. Send both first and last name with at least one company, education, or location clue.

## Request

Send this body to `POST /people/enrich`. See the [Quickstart](/quickstart) for authentication and SDK setup.

```json theme={null}
{
  "name": {
    "first": "Jane",
    "last": "Example"
  },
  "company": {
    "domain": "example.com"
  },
  "location": {
    "country": "United States",
    "city": "San Francisco"
  }
}
```

Names accept 1–100 characters per part. Company clues can include a name or domain. Education accepts 1–10 entries with institution details, degree, field of study, or graduation year; valid years range from 1900 to 2200.

For attendee lists, send only the context supplied by the source. Do not invent a company or location to satisfy validation. Check the [match score](/people/overview#read-the-result) and retain an unresolved state for ambiguous people.
