Start an async job to enrich people with email and/or phone data.
Looks up each person via their LinkedIn URL and returns a job_id
immediately for polling.
Flow:
people_ids → receive job_idGET /api/v1/enrich/people/{job_id} every 3-5 secondsstatus is "completed", the result field contains per-person email/phone dataCredit costs:
Limits:
Example request:
{
"people_ids": [101, 102, 103],
"enrich_emails": true,
"enrich_phones": false
}
Error codes:
INVALID_REQUEST (400) — Empty people_ids or both enrich flags are falsePERSON_NOT_FOUND (404) — One or more people_ids not found or not owned by userRequest to enrich people with email addresses and/or phone numbers.
Starts an async enrichment job. Each person is looked up via their LinkedIn URL. Credits are charged per successful email or phone found.
Poll the returned job_id via GET /api/v1/enrich/people/{job_id} for results.
List of people IDs to enrich (max 500 per request)
1 - 500 elementsWhether to enrich with work email addresses
Whether to enrich with phone numbers (additional credits per phone found)
Successful Response
Response from starting a people enrichment job.
Returns immediately with a job_id. Poll GET /api/v1/enrich/people/{job_id}
for progress and results.