icypeas_find_work_email
Retrieve professional email addresses by entering a person's first name, last name, and company or domain information. Simplify contact discovery with precision.
Instructions
Find a work email using name and company information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domainOrCompany | Yes | The domain or company name | |
firstname | Yes | The first name of the person | |
lastname | Yes | The last name of the person |
Input Schema (JSON Schema)
{
"properties": {
"domainOrCompany": {
"description": "The domain or company name",
"type": "string"
},
"firstname": {
"description": "The first name of the person",
"type": "string"
},
"lastname": {
"description": "The last name of the person",
"type": "string"
}
},
"required": [
"firstname",
"lastname",
"domainOrCompany"
],
"type": "object"
}