Enrich Person
https://app.click5enrich.com/api/v1/enrich/person
Enrich Person API Endpoint retrieves information about person from their name and/or email address.
Request
Authorization
Authorization token in the Bearer format.
Provide your bearer token in the Authorization header when making requests to protected resources.
Example:
X-API-Key: ck5-123456789012345678901234567890123456789012345678901234567890
Parameters
full_name
First and Last Name of the Person
Example:
John Doe
Valid Email address of the Person
Example:
john.doe@example.com
timeout
Timeout in seconds for enrichment process
Default value: 120 seconds
Example:
120
Responses
200 – Success
{
”first_name”: “John”,
”last_name”: “Doe”,
”email”: “john.doe@example.com”,
”avatar_url”: “https://example.com/avatars/john-doe.jpg”,
”company_name”: “Acme Corporation Inc.”,
”company_website”: “https://www.acme.com/”,
”title”: “CEO”,
”address1″: “123 Nice Street”,
”address2″: “Suite 100″,
”city”: “Chicago”,
”state”: “IL”,
”zip”: “60606”,
”phone”: “1231231234”,
”linkedin”: “https://linkedin.com/in/johndoe”,
”facebook”: “https://facebook.com/john.doe”,
”instagram”: “https://instagram.com/johndoe”,
”twitter”: “https://x.com/johndoe”,
”youtube”: “https://youtube.com/@johndoe”,
”about_short”: “Short description (usually a sentence) of the enriched Person’s profile.”,
”about_long”: “Long description (usually a paragraph) of the enriched Person’s profile.”
}
400 – Bad Request
Bad request due to missing required parameters. This occurs when neither full_name nor email is provided.
{
”detail”: “Either full_name or email must be provided.”
}
422 – Validation Error
Validation error occurred during the enrichment process. This may be due to invalid input parameters. The error details will be included in the response.
{
”detail”: “Validation error occurred during the enrichment process. Please check the input parameters and try again.”
}
429 – Rate Limit Exceeded
The API key has exceeded its allowed number of requests within the time window. Please wait before making additional requests or upgrade your API plan for higher rate limits.
{
”detail”: “Daily/Minute rate limit exceeded.”
}
500 – Internal Server Error
Internal server error occurred during the enrichment process. This may be due to service unavailability, timeout issues, or unexpected errors in the enrichment process. The error details will be included in the response.
{
”detail”: “An unexpected error occurred while processing the enrichment request. Please try again later or contact support if the issue persists.”
}