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

# Start LinkedIn contact enrichment

> Start enrichment from a LinkedIn profile URL.

<Card title="First time? Set up Authentication" icon="key" href="/authentication">
  Learn how to authenticate your API requests with your API key.
</Card>

Triggers asynchronous phone and/or email enrichment for the canonical LinkedIn profile URL.

### Request body

<ParamField body="linkedinUrl" type="string" required>
  Public LinkedIn profile URL for one person only.
</ParamField>

<ParamField body="enrichmentType" type="string" required>
  One of `phone`, `personalEmail`, or `all`.
</ParamField>

### Response

When `success` is `true`, `data` includes `talentId`, canonical `linkedinUrl`, and `enrichmentType`.

```bash theme={null}
curl -X POST https://app.kalent.ai/api/v1/contact/enrich \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"linkedinUrl":"https://www.linkedin.com/in/example","enrichmentType":"all"}'
```

## Errors

| Code                       | HTTP |
| -------------------------- | ---- |
| `validation_error`         | 400  |
| `missing_enrich_providers` | 400  |
| `insufficient_credits`     | 402  |
| `not_found`                | 404  |
| `internal_error`           | 500  |
