Skip to Content
enrich_person

enrich_person

Find a person’s professional email address and/or mobile phone number. Provide at least one identifying field — LinkedIn URL is the most reliable.

Credits: 1 credit (email only) / 10 credits (with mobile)

Parameters

NameTypeRequiredDescription
linkedin_urlstring (url)optionalLinkedIn profile URL, e.g. https://linkedin.com/in/johndoe
emailstringoptionalPerson’s known email address (used as a lookup key)
person_idstringoptionalProspeo person_id from a prior search_person result
first_namestringoptionalFirst name (combine with company_name or company_website)
last_namestringoptionalLast name
full_namestringoptionalFull name — alternative to first_name + last_name
company_namestringoptionalCurrent employer name
company_websitestringoptionalCompany website, e.g. https://acme.com
company_linkedin_urlstring (url)optionalCompany LinkedIn URL
only_verified_emailbooleanoptionalOnly return results when a verified email is found. Default: false
enrich_mobilebooleanoptionalAlso look up the person’s mobile phone (costs 10 credits total). Default: false
only_verified_mobilebooleanoptionalOnly return results when a verified mobile is found. Automatically enables enrich_mobile. Default: false

Provide at least one of: linkedin_url, email, or (first_name/full_name + company_name/company_website). Requests with no identifying data are rejected.

Example — by LinkedIn URL

{ "linkedin_url": "https://linkedin.com/in/johndoe", "enrich_mobile": true }

Example — by name + company

{ "first_name": "Jane", "last_name": "Smith", "company_website": "https://acme.com", "only_verified_email": true }

Response

{ "success": true, "data": { "found": true, "free_enrichment": false, "person": { "person_id": "abc123", "full_name": "John Doe", "current_job_title": "VP of Engineering", "email": { "email": "john@acme.com", "status": "VERIFIED" }, "mobile": { "mobile_international": "+14155552671", "mobile_country": "US", "status": "VERIFIED" }, "location": { "city": "San Francisco", "country": "United States" }, "skills": ["TypeScript", "AWS"], "job_history": [...] }, "company": { "company_id": "xyz789", "name": "Acme Inc", "website": "https://acme.com", "industry": "SaaS", "employee_range": "51-200" } } }

When no match is found:

{ "success": true, "data": { "found": false, "message": "No person found matching the provided data points. Try adding more identifying information." } }
Last updated on