GET /people/enrich
This endpoint enriches person data with contact information (email, phone numbers) and social information based on the provided parameters. It uses rate limiting to prevent abuse.
You must provide either:
fullName
with either companyName
or companyUrl
, ORemail
, linkedInHandle
, or twitterHandle
Try to provide as much data as you can on the individual you want to enrich. The more data we have, the better we will be able to find the right information for you.
Parameter | Type | Required | Description |
---|---|---|---|
fullName | string | * | Full name of the person |
companyName | string | * | Name of the company the person works for |
companyUrl | string | * | URL of the company (will be normalized) |
string | * | Email address of the person | |
linkedInHandle | string | * | LinkedIn profile handle of the person |
twitterHandle | string | * | Twitter profile handle of the person |
enrichPhone | boolean | No | Whether to enrich the result with phone number (default: false) |
*
See requirement note above
200 OK
400 Bad Request
{ "error": "Invalid input", "details": [...] }