Skip to main content
POST
/
v1
/
contact
/
enrich
Start LinkedIn contact enrichment
curl --request POST \
  --url https://app.kalent.ai/api/v1/contact/enrich \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "linkedinUrl": "<string>",
  "enrichmentType": "<string>"
}
'

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.

First time? Set up Authentication

Learn how to authenticate your API requests with your API key.
Triggers asynchronous phone and/or email enrichment for the canonical LinkedIn profile URL.

Request body

linkedinUrl
string
required
Public LinkedIn profile URL for one person only.
enrichmentType
string
required
One of phone, personalEmail, or all.

Response

When success is true, data includes talentId, canonical linkedinUrl, and enrichmentType.
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

CodeHTTP
validation_error400
missing_enrich_providers400
insufficient_credits402
not_found404
internal_error500