find_email
Identify email addresses for individuals using their full name and company domain. Optionally include a LinkedIn profile URL or custom data for enhanced accuracy.
Instructions
Find an email address for a person.
Args:
full_name: The full name of the person
domain: The company domain or website
linkedin_url: Optional LinkedIn profile URL
custom_data: Optional custom data to associate with the request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
custom_data | No | ||
domain | Yes | ||
full_name | Yes | ||
linkedin_url | No |
Input Schema (JSON Schema)
{
"properties": {
"custom_data": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Custom Data"
},
"domain": {
"title": "Domain",
"type": "string"
},
"full_name": {
"title": "Full Name",
"type": "string"
},
"linkedin_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Linkedin Url"
}
},
"required": [
"full_name",
"domain"
],
"title": "find_emailArguments",
"type": "object"
}