Enrichment
Enrich Contacts
POST /v1/enrich/contact
POST
/v1/enrich/contactPOST
/v1/enrich/contact
Enrich people by LinkedIn URL or full name + company or Lead Ids. Maximum 100 allowed
Authorization
x-api-key<token>
API key for Open API authentication
In: header
Request Body
application/jsonRequiredlinkedin_urlarray<string>
LinkedIn profile URLs to enrich (max 100)
Example:["https://linkedin.com/in/johndoe"]lead_idarray<number>
Lead IDs to enrich (max 100)
Example:[12345,67890]reveal_phoneboolean
Whether to reveal phone numbers
Default:falseemail_typestring
Type of email to reveal. Combined with reveal_phone to decide what is revealed: work_email + reveal_phone=false reveals the work email; work_email + reveal_phone=true reveals work email and phone; personal_email + reveal_phone=false reveals the personal email; personal_email + reveal_phone=true reveals work email, personal email and phone.
Default:"work_email"Value in: "work_email" | "personal_email"webhook_urlstring
Webhook URL to call when enrichment completes
full_name_with_companyarray<object>
Full name + company combinations to enrich (max 100)
Responses
200
Enrichment job created. Returns a requestId to track progress.
{
"message": "Success",
"payload": {
"requestId": "64f1a2b3c4d5e6f7a8b9c0d1"
}
}